https://github.com/lszl84/wx_document_tutorial
Document/View Framework - wxWidgets C++ Tutorial
https://github.com/lszl84/wx_document_tutorial
cpp mvc wxwidgets
Last synced: about 4 hours ago
JSON representation
Document/View Framework - wxWidgets C++ Tutorial
- Host: GitHub
- URL: https://github.com/lszl84/wx_document_tutorial
- Owner: lszl84
- License: mit
- Created: 2023-05-06T08:31:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2026-03-25T14:25:22.000Z (4 months ago)
- Last Synced: 2026-03-26T17:10:29.038Z (3 months ago)
- Topics: cpp, mvc, wxwidgets
- Language: C++
- Homepage: https://devmindscape.com
- Size: 373 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wx_document_tutorial
Document/View Framework in wxWidgets.
[](https://www.youtube.com/watch?v=IGmIOIsRpD0)
Full Tutorial: [https://www.youtube.com/watch?v=IGmIOIsRpD0](https://www.youtube.com/watch?v=IGmIOIsRpD0). Learn how to use `wxDocument`, `wxView`, `wxDocManager`, `wxDocTemplate` and more!
### Building
To build the project, use:
```bash
cmake -S. -Bbuild
cmake --build build
```
This will create a directory named `build` and create all build artifacts there. The main executable can be found in the `build/subprojects/Build/wx_doocument_tutorial_core` folder.
### Reqiurements
If you don't have wxWidgets installed, the CMake script will download and build the dependencies automatically.
But if CMake script finds wxWidgets on your system, make sure it's at least version 3.1.0.
---
Check out the blog for more! [devmindscape.com](https://devmindscape.com)
---