From 8410f097e2926800f18273c1f6f5c49034ec2967 Mon Sep 17 00:00:00 2001 From: Alex Hirsch Date: Fri, 15 Jan 2021 10:30:55 +0100 Subject: [PATCH] exercises: Add GUI exercises --- exercises/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/exercises/README.md b/exercises/README.md index 217ea87..ab25d51 100644 --- a/exercises/README.md +++ b/exercises/README.md @@ -357,3 +357,13 @@ some text after ``` **Hint:** For Linux, have a look at the related man-pages, like *ld-linux(8)*. + +## Task 23 + +Implement a simple calculator using either [imgui](https://github.com/ocornut/imgui), [Qt Widgets](https://doc.qt.io/qt-5/qtwidgets-index.html), [Qt Quick](https://doc.qt.io/qt-5/qtquick-index.html), or any other cross-platform GUI toolkit. + +For Qt Quick, the actual calculation needs to be implemented in C++ as we want to investigate the interaction between the toolkit and the C++ programming language. + +## Task 24 + +Read through [*The 7 Tasks*](https://eugenkiss.github.io/7guis/tasks/) and implement the described tasks using one cross-platform GUI toolkit.