1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
/****************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:FDL$
** Commercial Usage
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in a
** written agreement between you and Nokia.
**
** GNU Free Documentation License
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of this
** file.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
** $QT_END_LICENSE$
**
****************************************************************************/
/*!
\example webkit/previewer
\title Previewer Example
The Previewer example shows how to use QtWebKit's QWebView to preview
HTML data written in a QPlainTextEdit.
\image previewer-example.png
\section1 The User Interface
Before we begin, we create a user interface using \QD. Two QGroupBox
objects - the editor group box and the previewer group box are separated
by a QSplitter. In the editor group box, we have a QPlainTextEdit object,
\c plainTextEdit, and two QPushButton objects. In the previewer group box,
we have a QWebView object, \c webView.
\image previewer-ui.png
\section1 Previewer Class Definition
The \c Previewer class is a subclass of both QWidget and Ui::Form.
We subclass Ui::Form in order to embed the \QD user interface form
created earlier. This method of embedding forms is known as the
\l{The Multiple Inheritance Approach}{multiple inheritance approach}.
In our \c previewer.h file, we have a constructor and a slot,
\c on_previewButton_clicked().
\snippet examples/webkit/previewer/previewer.h 0
\section1 Previewer Class Implementation
The \c{Previewer}'s constructor is only responsible for setting up the
user interface.
\snippet examples/webkit/previewer/previewer.cpp 0
The \c on_previewButton_clicked() is a slot corresponding to the
\c{previewButton}'s \l{QPushButton::}{clicked()} signal. When the
\c previewButton is clicked, we extract the contents of \c plainTextEdit,
and then invoke the \l{QWebView::}{setHtml()} function to display our
contents as HTML.
\snippet examples/webkit/previewer/previewer.cpp 1
\section1 MainWindow Class Definition
The \c MainWindow class for the Previewer example is a subclass of
QMainWindow with a constructor and five private slots: \c open(),
\c openUrl(), \c save(), \c about() and \c updateTextEdit().
\snippet examples/webkit/previewer/mainwindow.h 0
The private objects in \c MainWindow are \c centralWidget, which is
a \c Previewer object, \c fileMenu, \c helpMenu and the QAction objects
\c openAct, \c openUrlAct, \c saveAct, \c exitAct, \c aboutAct and
\c aboutQtAct.
\snippet examples/webkit/previewer/mainwindow.h 1
There are three private functions: \c createActions(), \c createMenus()
and \c setStartupText(). The \c createActions() and \c createMenus()
functions are necessary to set up the main window's actions and
assign them to the \gui File and \gui Help menus. The \c setStartupText()
function, on the other hand, displays a description about the example
in its HTML Previewer window.
\section1 MainWindow Class Implementation
The \c{MainWindow}'s constructor invokes \c createActions() and
\c createMenus() to set up the \gui File menu and \gui Help menu. Then,
the \c Previewer object, \c centralWidget, is set to the main window's
central widget. Also, we connect \c webView's
\l{QWebView::}{loadFinished()} signal to our \c updateTextEdit() slot.
Finally, we call the \c setStartupText() function to display the
description of the example.
\snippet examples/webkit/previewer/mainwindow.cpp 0
Within the \c createActions() function, we instantiate all our private
QAction objects which we declared in \c{mainwindow.h}. We set the
short cut and status tip for these actions and connect their
\l{QAction::}{triggered()} signal to appropriate slots.
\snippet examples/webkit/previewer/mainwindow.cpp 1
\dots
The \c createMenus() function instantiates the QMenu items, \c fileMenu
and \c helpMenu and adds them to the main window's
\l{QMainWindow::menuBar()}{menu bar}.
\snippet examples/webkit/previewer/mainwindow.cpp 2
The example also provides an \c about() slot to describe its purpose.
\snippet examples/webkit/previewer/mainwindow.cpp 3
The \c MainWindow class provides two types of \gui Open functions:
\c open() and \c openUrl(). The \c open() function opens an HTML file
with \c fileName, and reads it with QTextStream. The function then
displays the output on \c plainTextEdit. The file's name is obtained
using QFileDialog's \l{QFileDialog::}{getOpenFileName()} function.
\snippet examples/webkit/previewer/mainwindow.cpp 4
The \c openUrl() function, on the other hand, displays a QInputDialog
to obtain a URL, and displays it on \c webView.
\snippet examples/webkit/previewer/mainwindow.cpp 5
In order to save a HTML file, the \c save() function first extracts the
contents of \c plainTextEdit and displays a QFileDialog to obtain
\c fileName. Then, we use a QTextStream object, \c in, to write to
\c file.
\snippet examples/webkit/previewer/mainwindow.cpp 6
Earlier, in \c{MainWindow}'s constructor, we connected \c{webView}'s
\l{QWebView::}{loadFinished()} signal to our private \c updateTextEdit()
slot. This slot updates the contents of \c plainTextEdit with the HTML
source of the web page's main frame, obtained using \l{QWebFrame}'s
\l{QWebFrame::}{toHtml()} function.
\snippet examples/webkit/previewer/mainwindow.cpp 7
To provide a description about the Previewer example, when it starts up,
we use the \c setStartupText() function, as shown below:
\snippet examples/webkit/previewer/mainwindow.cpp 8
\section1 The \c{main()} Function
The \c main() function instantiates a \c MainWindow object, \c mainWindow,
and displays it with the \l{QWidget::}{show()} function.
\snippet examples/webkit/previewer/main.cpp 0
*/
|