Skip to content
Snippets Groups Projects
Commit e05a874f authored by tobiglaser's avatar tobiglaser
Browse files

add ReadMe

parent dec218cb
No related branches found
No related tags found
No related merge requests found
# Qt Examples
Various little examples to help you start developing with Qt.
Feel free to contribute to this repo with more examples, widgets, layouts, configuration and so on.
## Counter
Counting a number up and down with button presses.
Uses `QPushButton` and `QLineEdit`.
Special here is that `myLineEdit` is an extended `QLineEdit` with a new `slot` (callback function).
## Text2Console
Print the content of a text field to std::cout on button press.
Uses `QPushButton` and `QLineEdit`.
Special here is the division of functionality between view MainWindow and control Control.
It is not shown here, but when using a *model* it doesn't have to be a `QObject` and can thus be fully independend from the Qt Framework.
# Building
Should work out of the box with Qt Creator, VSCode and the CMake and C++ plugins installed.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment