summaryrefslogtreecommitdiffstats
path: root/examples/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2016-11-02 12:41:36 +0100
committerTopi Reiniƶ <topi.reinio@qt.io>2016-11-02 12:46:21 +0000
commit90aff7026205d71efde65f1783a06af82e528287 (patch)
tree649de23cdb82919e47880bbfd1dad55f3377ff53 /examples/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc
parent8e59b4a63acc0d8f9f5e6d710788f3bfe5915ae3 (diff)
Doc: Use capitalization in section titles
Change-Id: I3ea9dde5f98813716d754d292af1f005d33ba98e Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'examples/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc')
-rw-r--r--examples/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc b/examples/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc
index 7d722813..9818fb79 100644
--- a/examples/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc
+++ b/examples/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc
@@ -41,7 +41,7 @@
\image draggableaxes-example.png
- \section1 Replacing default input handling
+ \section1 Replacing Default Input Handling
The default input handling mechanism is replaced by setting the active input handler of
Q3DScatter to \c AxesInputHandler that implements the custom behavior:
@@ -56,7 +56,7 @@
\snippet draggableaxes/data.cpp 2
- \section1 Extending mouse event handling
+ \section1 Extending Mouse Event Handling
First of all, we inherited our input handler from Q3DInputHandler instead of
QAbstract3DInputHandler. The reason for doing this is to keep all the functionality of the
@@ -83,7 +83,7 @@
We don't need to change the functionality of mouse wheel, so we will not re-implement that.
- \section1 Implementing axis dragging
+ \section1 Implementing Axis Dragging
First we need to start listening to the selection signal from the graph. We do that in the
constructor, and connect it to \c handleElementSelected method:
@@ -129,5 +129,5 @@
The modifier could be adjusted automatically based on the axis range and camera zoom level, but
we'll leave implementing that as an excercise for the reader.
- \section1 Example contents
+ \section1 Example Contents
*/