mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 14:15:54 -06:00
[PR #17] [MERGED] Added support for declaring and raising signals. #170
Labels
No labels
bug
enhancement
help wanted
help wanted
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/qmlnet#170
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/qmlnet/qmlnet/pull/17
Author: @pauldotknopf
Created: 7/20/2018
Status: ✅ Merged
Merged: 7/20/2018
Merged by: @pauldotknopf
Base:
master← Head:signals📝 Commits (10+)
8f3d3fdAdded ability to add signals to type info.3bbf573Added the signal info wrapping type.cf8abedUsing the new signal type on the type info.eda3d26Added support for discovering signals on the type info.6fa1472Added support for activating the signal from qml.df55652This is the failure scenario.5cb7220One NetValue for one NetInstance3119c41One NetInstance per .Net object (basically an attached property)7121405NetInstance: additional path for already released GCHandle referencesdb37763More robust ConditionalWeakTable usage📊 Changes
28 files changed (+1030 additions, -155 deletions)
View changed files
📝
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValue.cpp(+90 -7)📝
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValue.h(+12 -1)📝
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueMetaObject.cpp(+38 -3)📝
src/native/QtNetCoreQml/QtNetCoreQml/types/NetInstance.cpp(+36 -4)📝
src/native/QtNetCoreQml/QtNetCoreQml/types/NetInstance.h(+2 -0)➕
src/native/QtNetCoreQml/QtNetCoreQml/types/NetSignalInfo.cpp(+55 -0)➕
src/native/QtNetCoreQml/QtNetCoreQml/types/NetSignalInfo.h(+24 -0)📝
src/native/QtNetCoreQml/QtNetCoreQml/types/NetTypeInfo.cpp(+32 -0)📝
src/native/QtNetCoreQml/QtNetCoreQml/types/NetTypeInfo.h(+6 -0)📝
src/native/QtNetCoreQml/QtNetCoreQml/types/types.pri(+4 -2)📝
src/net/Qt.NetCore.Sandbox/Program.UI.cs(+56 -12)📝
src/net/Qt.NetCore.Sandbox/Qt.NetCore.Sandbox.csproj(+3 -0)📝
src/net/Qt.NetCore.Sandbox/main.qml(+126 -3)📝
src/net/Qt.NetCore.Tests/Qml/NetVariantTests.cs(+1 -1)➕
src/net/Qt.NetCore.Tests/Qml/SignalTests.cs(+182 -0)📝
src/net/Qt.NetCore.Tests/Types/CallbacksTests.cs(+2 -2)📝
src/net/Qt.NetCore.Tests/Types/NetInstanceTests.cs(+1 -10)➕
src/net/Qt.NetCore.Tests/Types/NetSignalInfoTests.cs(+24 -0)📝
src/net/Qt.NetCore.Tests/Types/NetTypeInfoTests.cs(+15 -0)📝
src/net/Qt.NetCore.Tests/Types/NetTypeManagerTests.cs(+19 -0)...and 8 more files
📄 Description
Closes #7
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.