summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qxmlquery/bindingExample.cpp
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2009-09-09 03:45:47 (GMT)
committerRohan McGovern <rohan.mcgovern@nokia.com>2009-09-09 03:45:47 (GMT)
commitdec9ab81e8a62a67d9ce1b0163879d61639aeefa (patch)
tree98652a86fe2125ccb7a7c194b1e1da205f9eb79d /doc/src/snippets/qxmlquery/bindingExample.cpp
parent8d37cc2a85f6aa1b9ca3ddc3a923befb4434c62c (diff)
parentbc02fbf402f922b41ae6ffb5ad3ede9101456a44 (diff)
downloadQt-dec9ab81e8a62a67d9ce1b0163879d61639aeefa.zip
Qt-dec9ab81e8a62a67d9ce1b0163879d61639aeefa.tar.gz
Qt-dec9ab81e8a62a67d9ce1b0163879d61639aeefa.tar.bz2
Merge commit 'bc02fbf402f922b41ae6ffb5ad3ede9101456a44' into 4.6
Diffstat (limited to 'doc/src/snippets/qxmlquery/bindingExample.cpp')
0 files changed, 0 insertions, 0 deletions
in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef WINDOW_H #define WINDOW_H #include <QList> #include <QMainWindow> #include <QString> class QAction; class QTextDocument; class QTextEdit; class QTextList; class QTreeWidgetItem; class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(); public slots: void insertList(); void highlightListItems(); void showList(); private: QString currentFile; QTextEdit *editor; QTextDocument *document; QList<QTextList*> listStructures; QList<QTreeWidgetItem*> previousItems; QList<QTreeWidgetItem*> parentItems; }; #endif