summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorTamas Martinec <tamas.martinec@symbio.com>2021-03-19 15:05:31 +0200
committerTamas Martinec <tamas.martinec@symbio.com>2021-03-23 15:43:32 +0200
commit3f5d1807eaa8601a5812b01657f1ed4837ff6ec3 (patch)
tree4acb684cda6887d2a3be6b89a0e567e63805f597 /examples
parent9339ea01179ae72cc2a7bf0b09cf598e36fd08f7 (diff)
Improve the documentation of the two way button example
Also fix for the "Example documentation should have at least one '\image'" qdoc warning. Pick-to: 6.1 Task-number: QTBUG-89834 Change-Id: I271632c1c1851318939049a6c2832e75cac3d0c0 Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/statemachine/doc/images/twowaybutton-chart.pngbin0 -> 11001 bytes
-rw-r--r--examples/statemachine/doc/images/twowaybutton-example.pngbin0 -> 2361 bytes
-rw-r--r--examples/statemachine/doc/src/twowaybutton.qdoc4
3 files changed, 4 insertions, 0 deletions
diff --git a/examples/statemachine/doc/images/twowaybutton-chart.png b/examples/statemachine/doc/images/twowaybutton-chart.png
new file mode 100644
index 0000000..521b9e2
--- /dev/null
+++ b/examples/statemachine/doc/images/twowaybutton-chart.png
Binary files differ
diff --git a/examples/statemachine/doc/images/twowaybutton-example.png b/examples/statemachine/doc/images/twowaybutton-example.png
new file mode 100644
index 0000000..a5457f8
--- /dev/null
+++ b/examples/statemachine/doc/images/twowaybutton-example.png
Binary files differ
diff --git a/examples/statemachine/doc/src/twowaybutton.qdoc b/examples/statemachine/doc/src/twowaybutton.qdoc
index 6e4eed9..a51cda4 100644
--- a/examples/statemachine/doc/src/twowaybutton.qdoc
+++ b/examples/statemachine/doc/src/twowaybutton.qdoc
@@ -35,6 +35,8 @@
to implement a simple state machine that toggles the current
state when a button is clicked.
+ \image twowaybutton-example.png
+
\snippet statemachine/twowaybutton/main.cpp 0
The application's main() function begins by constructing the application
@@ -42,6 +44,8 @@
\snippet statemachine/twowaybutton/main.cpp 1
+ \image twowaybutton-chart.png
+
The state machine has two states; \c on and \c off. When either state is
entered, the text of the button will be set accordingly.