summaryrefslogtreecommitdiff
path: root/examples/enginio/widgets/cloudaddressbook/doc/src/cloudaddressbook.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/enginio/widgets/cloudaddressbook/doc/src/cloudaddressbook.qdoc')
-rw-r--r--examples/enginio/widgets/cloudaddressbook/doc/src/cloudaddressbook.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/enginio/widgets/cloudaddressbook/doc/src/cloudaddressbook.qdoc b/examples/enginio/widgets/cloudaddressbook/doc/src/cloudaddressbook.qdoc
index 7864a5e..04caf70 100644
--- a/examples/enginio/widgets/cloudaddressbook/doc/src/cloudaddressbook.qdoc
+++ b/examples/enginio/widgets/cloudaddressbook/doc/src/cloudaddressbook.qdoc
@@ -44,7 +44,7 @@
Enginio backend. The backend can be created using the dashboard, where the Cloud Address Book preconfigured backend
can be chosen.
- \section1 Backend description
+ \section1 Backend Description
We recommend to use preconfigured backend, because it contains already all data and structures that are
needed to run these examples, but it is not difficult to create the backend from scratch too.
The backend should contain one custom object type \c objects.addressbook having properties:
@@ -58,7 +58,7 @@
All properties are of \c string type and have to be indexed, because only indexed properties will be searched
by the full text search.
- \section1 Application design
+ \section1 Application Design
The application's ui mainly consists of a table showing all addresses and a text filed where a query
can be typed. A user should be able to sort addresses or highlight an address containing a specified phrase.
@@ -67,7 +67,7 @@
\list
\li \l EnginioClient which encapsulates all information needed to keep the connection to the backend
\li \l EnginioModel which queries all addresses
- \li \l QSortFilterProxy which sorts the data
+ \li \l QSortFilterProxyModel which sorts the data
\li \l QTableView which shows the data
\endlist
@@ -80,7 +80,7 @@
\snippet cloudaddressbook/mainwindow.cpp model
EnginioModel can sort or filter data only initially, which means that, for example, a newly added
- item will not be placed correctly. To solve the problem QSortFilterProxy has to be used.
+ item will not be placed correctly. To solve the problem QSortFilterProxyModel has to be used.
\snippet cloudaddressbook/mainwindow.cpp assignProxyModel
Now is a time to look deeper into EngnioModel. EnginioModel should define data roles.