[PR #6] [MERGED] Migrating away from swig. #165

Closed
opened 2026-05-05 11:20:01 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qmlnet/qmlnet/pull/6
Author: @pauldotknopf
Created: 7/14/2018
Status: Merged
Merged: 7/15/2018
Merged by: @pauldotknopf

Base: masterHead: interop


📝 Commits (10+)

  • b2232ba Removed all the interop temp until I bring it back slowly using new PInvoke approach.
  • 96dbe0c Removing swig.
  • 5b7d7fb Removing QML integration. Only the reflection stuff in there now.
  • 1ef1163 Working on the interop.
  • 8c49a78 Verified I can call the callbacks.
  • 0b7f55f Can check if type is valid.
  • daf7491 Working on the NetTypeInfo pinvoke.
  • 5e02f5c Using helper disposable class.
  • c37b3eb Minor changes.
  • e755cfe Added the method to build type info.

📊 Changes

134 files changed (+3962 additions, -6763 deletions)

View changed files

src/native/QtNetCoreQml/QtNetCoreQml.h (+62 -0)
src/native/QtNetCoreQml/QtNetCoreQml.pri (+7 -0)
📝 src/native/QtNetCoreQml/QtNetCoreQml.pro (+1 -41)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetTestHelper.cpp (+21 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetTestHelper.h (+7 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValue.cpp (+20 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValue.h (+31 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueMetaObject.cpp (+325 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueMetaObject.h (+27 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueType.cpp (+1 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueType.h (+32 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetVariant.cpp (+336 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetVariant.h (+42 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetVariantList.cpp (+71 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/NetVariantList.h (+26 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/QGuiApplication.cpp (+41 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/QGuiApplication.h (+24 -0)
📝 src/native/QtNetCoreQml/QtNetCoreQml/qml/QQmlApplicationEngine.cpp (+28 -12)
src/native/QtNetCoreQml/QtNetCoreQml/qml/QQmlApplicationEngine.h (+12 -0)
src/native/QtNetCoreQml/QtNetCoreQml/qml/qml.pri (+19 -0)

...and 80 more files

📄 Description

Possibly using: https://github.com/Firwood-Software/AdvanceDLSupport

If not, manual PInvoke.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qmlnet/qmlnet/pull/6 **Author:** [@pauldotknopf](https://github.com/pauldotknopf) **Created:** 7/14/2018 **Status:** ✅ Merged **Merged:** 7/15/2018 **Merged by:** [@pauldotknopf](https://github.com/pauldotknopf) **Base:** `master` ← **Head:** `interop` --- ### 📝 Commits (10+) - [`b2232ba`](https://github.com/qmlnet/qmlnet/commit/b2232ba68754f39514508b4735108e965ffdabe6) Removed all the interop temp until I bring it back slowly using new PInvoke approach. - [`96dbe0c`](https://github.com/qmlnet/qmlnet/commit/96dbe0cf1d8943bed01ba7c0a8449869e5fc6db3) Removing swig. - [`5b7d7fb`](https://github.com/qmlnet/qmlnet/commit/5b7d7fb059dbae8fba42f6c3f80e2741c3d1812f) Removing QML integration. Only the reflection stuff in there now. - [`1ef1163`](https://github.com/qmlnet/qmlnet/commit/1ef116369dbc25f36352861a6b5ff00a996577df) Working on the interop. - [`8c49a78`](https://github.com/qmlnet/qmlnet/commit/8c49a78dfa51be5037d5f9e9bdf397f419d35eff) Verified I can call the callbacks. - [`0b7f55f`](https://github.com/qmlnet/qmlnet/commit/0b7f55fc055bcf0d0667ce205731ca3df820b43d) Can check if type is valid. - [`daf7491`](https://github.com/qmlnet/qmlnet/commit/daf7491e3ef6d93d7a797dd31512c0c61e2553f1) Working on the NetTypeInfo pinvoke. - [`5e02f5c`](https://github.com/qmlnet/qmlnet/commit/5e02f5cd0c6c84efb2bd5a5142520eb26e52b93a) Using helper disposable class. - [`c37b3eb`](https://github.com/qmlnet/qmlnet/commit/c37b3eb23c28968dc1ff7f0b01a9cfcf498758c0) Minor changes. - [`e755cfe`](https://github.com/qmlnet/qmlnet/commit/e755cfe10d7c935ad71e9023fe25cd51a86a69ba) Added the method to build type info. ### 📊 Changes **134 files changed** (+3962 additions, -6763 deletions) <details> <summary>View changed files</summary> ➕ `src/native/QtNetCoreQml/QtNetCoreQml.h` (+62 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml.pri` (+7 -0) 📝 `src/native/QtNetCoreQml/QtNetCoreQml.pro` (+1 -41) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetTestHelper.cpp` (+21 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetTestHelper.h` (+7 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValue.cpp` (+20 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValue.h` (+31 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueMetaObject.cpp` (+325 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueMetaObject.h` (+27 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueType.cpp` (+1 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetValueType.h` (+32 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetVariant.cpp` (+336 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetVariant.h` (+42 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetVariantList.cpp` (+71 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/NetVariantList.h` (+26 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/QGuiApplication.cpp` (+41 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/QGuiApplication.h` (+24 -0) 📝 `src/native/QtNetCoreQml/QtNetCoreQml/qml/QQmlApplicationEngine.cpp` (+28 -12) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/QQmlApplicationEngine.h` (+12 -0) ➕ `src/native/QtNetCoreQml/QtNetCoreQml/qml/qml.pri` (+19 -0) _...and 80 more files_ </details> ### 📄 Description Possibly using: https://github.com/Firwood-Software/AdvanceDLSupport If not, manual PInvoke. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 11:20:01 -06:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/qmlnet#165
No description provided.