mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-03 05:12:55 +00:00
Fixup dead links to the old tutorial
This commit is contained in:
parent
0723743d14
commit
1c3eb46752
6 changed files with 9 additions and 18 deletions
|
|
@ -120,9 +120,9 @@ The `docs` folder contains a lot more information, including
|
|||
|
||||
Refer to the README of each language directory in the `api` folder:
|
||||
|
||||
- [C++](api/cpp) ([Documentation][#15] | [Tutorial][#16] | [Getting Started Template][#17])
|
||||
- [Rust](api/rs/slint) [![Crates.io][#18]][#19] ([Documentation][#20] | [Tutorial][#21] | [Tutorial Video][#22] | [Getting Started Template][#23])
|
||||
- [JavaScript/NodeJS (Beta)](api/node) [![npm][#24]][#25] ([Documentation][#26] | [Tutorial][#27] | [Getting Started Template][#28])
|
||||
- [C++](api/cpp) ([Documentation][#15] | [Getting Started Template][#17])
|
||||
- [Rust](api/rs/slint) [![Crates.io][#18]][#19] ([Documentation][#20] | [Tutorial Video][#22] | [Getting Started Template][#23])
|
||||
- [JavaScript/NodeJS (Beta)](api/node) [![npm][#24]][#25] ([Documentation][#26] | [Getting Started Template][#28])
|
||||
|
||||
## Architecture
|
||||
|
||||
|
|
@ -247,18 +247,15 @@ You can of course also contact us privately via email to [info@slint.dev](mailto
|
|||
[#13]: https://slint.dev/resources/gallery_screenshot.png "Gallery Demo"
|
||||
[#14]: https://slint.dev/demos/gallery/
|
||||
[#15]: https://slint.dev/latest/docs/cpp
|
||||
[#16]: https://slint.dev/latest/docs/quickstart/cpp
|
||||
[#17]: https://github.com/slint-ui/slint-cpp-template
|
||||
[#18]: https://img.shields.io/crates/v/slint
|
||||
[#19]: https://crates.io/crates/slint
|
||||
[#20]: https://slint.dev/latest/docs/rust/slint/
|
||||
[#21]: https://slint.dev/latest/docs/quickstart/rust
|
||||
[#22]: https://youtu.be/WBcv4V-whHk
|
||||
[#23]: https://github.com/slint-ui/slint-rust-template
|
||||
[#24]: https://img.shields.io/npm/v/slint-ui
|
||||
[#25]: https://www.npmjs.com/package/slint-ui
|
||||
[#26]: https://slint.dev/latest/docs/node
|
||||
[#27]: https://slint.dev/latest/docs/quickstart/node
|
||||
[#28]: https://github.com/slint-ui/slint-nodejs-template
|
||||
[#29]: ./examples/weather-demo/docs/img/desktop-preview.png "Weather Demo"
|
||||
[#30]: https://slint.dev/demos/weather-demo/
|
||||
|
|
|
|||
|
|
@ -9,8 +9,6 @@ Slint.cpp is the C++ API to interact with a Slint UI from C++.
|
|||
|
||||
The complete C++ documentation can be viewed online at https://slint.dev/docs/cpp/.
|
||||
|
||||
If you are new to Slint, you might also consider going through our [Walk-through tutorial](https://slint.dev/docs/quickstart/cpp).
|
||||
|
||||
## Installing or Building Slint
|
||||
|
||||
Slint comes with a CMake integration that automates the compilation step of the `.slint` markup language files and
|
||||
|
|
@ -250,7 +248,6 @@ int main() {
|
|||
|
||||
That's it.
|
||||
|
||||
For more details, check the [Online documentation](https://slint.dev/docs/cpp) and the full
|
||||
[Walk-through tutorial](https://slint.dev/docs/quickstart/cpp).
|
||||
For more details, check the [Online documentation](https://slint.dev/docs/cpp).
|
||||
We also have a [Getting Started Template](https://github.com/slint-ui/slint-cpp-template) repository with
|
||||
the code of a minimal C++ application using Slint that can be used as a starting point to your program.
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ the UI, read or write properties, and set callbacks. You can learn more about ho
|
|||
|
||||
## Tutorial
|
||||
|
||||
For an in-depth walk-through, read our <a href="../quickstart/cpp">Slint Memory Game Tutorial</a>.
|
||||
For an in-depth walk-through, read our <a href="../slint/src/quickstart">Slint Memory Game Tutorial</a>.
|
||||
It will guide you through the `.slint` mark-up language and the C++ API by building a simple memory
|
||||
game.
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
[Slint](https://slint.dev/) is a UI toolkit that supports different programming languages.
|
||||
Slint-node is the integration with Node.js.
|
||||
|
||||
To get started you use the [walk-through tutorial](https://slint.dev/docs/quickstart/node).
|
||||
To get started you use the [walk-through tutorial](https://slint.dev/docs/slint/src/quickstart/).
|
||||
We also have a [Getting Started Template](https://github.com/slint-ui/slint-nodejs-template) repository with
|
||||
the code of a minimal application using Slint that can be used as a starting point to your program.
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
[Slint](https://slint.dev/) is a UI toolkit that supports different programming languages.
|
||||
Slint-node is the integration with [Node.js](https://nodejs.org/en) and [Deno](https://deno.com).
|
||||
|
||||
To get started you use the [walk-through tutorial](https://slint.dev/docs/quickstart/node).
|
||||
To get started you use the [walk-through tutorial](https://slint.dev/docs/slint/src/quickstart).
|
||||
We also have a [Getting Started Template](https://github.com/slint-ui/slint-nodejs-template) repository with
|
||||
the code of a minimal application using Slint that can be used as a starting point to your program.
|
||||
|
||||
|
|
|
|||
|
|
@ -2,13 +2,10 @@
|
|||
|
||||
### `memory`
|
||||
|
||||
A basic memory game used as an example the tutorial:
|
||||
|
||||
* [Memory Game Tutorial (Rust)](https://slint.dev/docs/quickstart/rust)
|
||||
* [Memory Game Tutorial (C++)](https://slint.dev/docs/quickstart/cpp)
|
||||
A basic memory game used as an example the [tutorial](https://slint.dev/docs/slint/src/quickstart/)
|
||||
|
||||
| `.slint` Design | Rust Source | C++ Source | Online wasm Preview | Open in SlintPad |
|
||||
| --- | --- | --- | --- | --- |
|
||||
| [`memory.slint`](./memory.slint) | [`main.rs`](./main.rs) | [`memory.cpp`](./memory.cpp) | [Online simulation](https://slint.dev/snapshots/master/demos/memory/) | [Preview in Online Code Editor](https://slint.dev/snapshots/master/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/memory/memory.slint) |
|
||||
|
||||

|
||||

|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue