forked from KDAB/KDDockWidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
901 additions
and
435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,5 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
- uses: actions/setup-python@v5 | ||
- uses: pre-commit/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"default": true, | ||
"MD007": { | ||
"indent": 2, | ||
"start_indented": false | ||
}, | ||
"MD013": { | ||
"line_length": 100, | ||
"tables": false, | ||
"code_blocks": false | ||
}, | ||
"MD029": { | ||
"style": "ordered" | ||
}, | ||
"MD033": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ Copyright: Klarälvdalens Datakonsult AB, a KDAB Group company <[email protected]> | |
License: GPL-2.0-only OR GPL-3.0-only | ||
|
||
#misc config files | ||
Files: .pre-commit-config.yaml .codespellrc .krazy .cmake-format .clang-format .clangd .clazy .clang-tidy .gitignore .mdlrc .mdlrc.rb .pep8 .pylintrc .editorconfig .shellcheckrc mkdocs.yml .github/workflows/mdbook.yml code.dev-*.code-workspace code.dev*.code-workspace vscode.code-workspace docs/api/Doxyfile.cmake distro/* *.yaml .github/workflows/pip-requirements.txt valgrind.sup | ||
Files: .pre-commit-config.yaml .codespellrc .krazy .cmake-format .clang-format .clangd .clazy .clang-tidy .gitignore .markdownlint.json .pep8 .pylintrc .editorconfig .shellcheckrc mkdocs.yml .github/workflows/mdbook.yml code.dev-*.code-workspace code.dev*.code-workspace vscode.code-workspace docs/api/Doxyfile.cmake distro/* *.yaml .github/workflows/pip-requirements.txt valgrind.sup | ||
Copyright: Klarälvdalens Datakonsult AB, a KDAB Group company <[email protected]> | ||
License: BSD-3-Clause | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# 3rdparty | ||
|
||
Here we list which 3rdparty software used and possibly shipped by KDDW and their respective licenses. | ||
|
||
## Runtime dependencies | ||
|
||
### nlohmann JSON | ||
|
||
JSON c++ library.<br> | ||
[code](src/3rdparty/nlohmann/nlohmann/json.hpp)<br> | ||
[MIT licensed](LICENSES/MIT.txt) | ||
|
||
### KDBindings | ||
|
||
Non-Qt signal/slot implementation. | ||
|
||
[code](src/3rdparty/kdbindings/)<br> | ||
[MIT licensed](LICENSES/MIT.txt) | ||
|
||
### KDStlContainerAdaptor | ||
|
||
Only used for a Flutter build. | ||
Replacement for QVector. | ||
|
||
[code](src/3rdparty/kdtoolbox/KDStlContainerAdaptor.h)<br> | ||
[MIT licensed](LICENSES/MIT.txt) | ||
|
||
## Build-time / CI tests 3rdparty | ||
|
||
These dependencies are only used during build or other CI purposes like running tests. | ||
|
||
### ECM | ||
|
||
CMake build helpers. | ||
|
||
[code](cmake/ECM/modules/)<br> | ||
[BSD licensed](LICENSES/BSD-3-Clause.txt) | ||
|
||
### doxygen-awesome.css | ||
|
||
Template to generate documentation. | ||
|
||
[code](docs/api/doxygen-awesome.css)<br> | ||
[MIT licensed](LICENSES/MIT.txt) | ||
|
||
### QCoro | ||
|
||
co-routine Qt implementation, only used by Flutter unit-tests. | ||
|
||
[code](src/3rdparty/qcoro/)<br> | ||
[MIT licensed](LICENSES/MIT.txt) | ||
|
||
### Flutter embedder and generated files | ||
|
||
Only used for a flutter build and only during tests. | ||
|
||
[code](tests/flutter_tests_embedder) and [code](examples/flutter)<br> | ||
[BSD licensed](LICENSES/BSD-3-Clause.txt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.