[PR #242] [CLOSED] Separated backend classes and few additional small improvements #294

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

📋 Pull Request Information

Original PR: https://github.com/kusti8/proton-native/pull/242
Author: @evhenious
Created: 1/13/2020
Status: Closed

Base: v2Head: v2


📝 Commits (10+)

  • 4531298 slightly improved import
  • a30476e better type defs
  • eedda36 merged append and insert as they pretty same
  • 0542bae Run prettier
  • 0e11bd9 Bump version for wx backend
  • 4c65903 Add issue templates (#241)
  • 2df98d5 qt backend classes separated
  • fa64e7f a lot of else-ifs better be switch
  • affdc26 wx backend classes separated (except commented ones)
  • 721cc3c fully static objects better to have out of funcs, may be faster a bit

📊 Changes

34 files changed (+570 additions, -409 deletions)

View changed files

.github/ISSUE_TEMPLATE/bug_report.md (+28 -0)
.github/ISSUE_TEMPLATE/documentation-issue.md (+16 -0)
.github/ISSUE_TEMPLATE/feature_request.md (+20 -0)
📝 README.md (+1 -1)
📝 package.json (+1 -1)
src/backends/qt.ts (+0 -211)
src/backends/qt/AppElement.ts (+13 -0)
src/backends/qt/BaseElement.ts (+64 -0)
src/backends/qt/ButtonElement.ts (+17 -0)
src/backends/qt/ImageElement.ts (+69 -0)
src/backends/qt/PickerElement.ts (+32 -0)
src/backends/qt/TextElement.ts (+13 -0)
src/backends/qt/TextInputElement.ts (+17 -0)
src/backends/qt/ViewElement.ts (+9 -0)
src/backends/qt/WindowElement.ts (+18 -0)
src/backends/qt/index.ts (+22 -0)
src/backends/wx/AppElement.ts (+12 -0)
📝 src/backends/wx/BaseElement.ts (+10 -73)
src/backends/wx/ButtonElement.ts (+32 -0)
src/backends/wx/ViewElement.ts (+22 -0)

...and 14 more files

📄 Description

Seems like big PR but actual changes are quite straightforward


🔄 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/kusti8/proton-native/pull/242 **Author:** [@evhenious](https://github.com/evhenious) **Created:** 1/13/2020 **Status:** ❌ Closed **Base:** `v2` ← **Head:** `v2` --- ### 📝 Commits (10+) - [`4531298`](https://github.com/kusti8/proton-native/commit/453129822245363d443c3ee1ba7982334eacac30) slightly improved import - [`a30476e`](https://github.com/kusti8/proton-native/commit/a30476ee00212f027401b91d9bb6d4816e528383) better type defs - [`eedda36`](https://github.com/kusti8/proton-native/commit/eedda363804861a696f37950558dd8d5b0dd808e) merged append and insert as they pretty same - [`0542bae`](https://github.com/kusti8/proton-native/commit/0542bae438589faf799b6990ce7caff378610994) Run prettier - [`0e11bd9`](https://github.com/kusti8/proton-native/commit/0e11bd9d26235a20eb2c51f1303ef2fa052d5e7b) Bump version for wx backend - [`4c65903`](https://github.com/kusti8/proton-native/commit/4c65903b96c303d96b081a24e2d3a11e964f99c4) Add issue templates (#241) - [`2df98d5`](https://github.com/kusti8/proton-native/commit/2df98d578e380ac364a3d53361aa135742a04be5) qt backend classes separated - [`fa64e7f`](https://github.com/kusti8/proton-native/commit/fa64e7f55b872ee14a7a9a92c5516562722cb9ee) a lot of else-ifs better be switch - [`affdc26`](https://github.com/kusti8/proton-native/commit/affdc260b4e24791d99110b481eb8f26e75bb6fb) wx backend classes separated (except commented ones) - [`721cc3c`](https://github.com/kusti8/proton-native/commit/721cc3c1a232ccd362b15d4ddc3baec245565d9a) fully static objects better to have out of funcs, may be faster a bit ### 📊 Changes **34 files changed** (+570 additions, -409 deletions) <details> <summary>View changed files</summary> ➕ `.github/ISSUE_TEMPLATE/bug_report.md` (+28 -0) ➕ `.github/ISSUE_TEMPLATE/documentation-issue.md` (+16 -0) ➕ `.github/ISSUE_TEMPLATE/feature_request.md` (+20 -0) 📝 `README.md` (+1 -1) 📝 `package.json` (+1 -1) ➖ `src/backends/qt.ts` (+0 -211) ➕ `src/backends/qt/AppElement.ts` (+13 -0) ➕ `src/backends/qt/BaseElement.ts` (+64 -0) ➕ `src/backends/qt/ButtonElement.ts` (+17 -0) ➕ `src/backends/qt/ImageElement.ts` (+69 -0) ➕ `src/backends/qt/PickerElement.ts` (+32 -0) ➕ `src/backends/qt/TextElement.ts` (+13 -0) ➕ `src/backends/qt/TextInputElement.ts` (+17 -0) ➕ `src/backends/qt/ViewElement.ts` (+9 -0) ➕ `src/backends/qt/WindowElement.ts` (+18 -0) ➕ `src/backends/qt/index.ts` (+22 -0) ➕ `src/backends/wx/AppElement.ts` (+12 -0) 📝 `src/backends/wx/BaseElement.ts` (+10 -73) ➕ `src/backends/wx/ButtonElement.ts` (+32 -0) ➕ `src/backends/wx/ViewElement.ts` (+22 -0) _...and 14 more files_ </details> ### 📄 Description Seems like big PR but actual changes are quite straightforward --- <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:58:14 -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/proton-native#294
No description provided.