summaryrefslogtreecommitdiff
path: root/doc/src/widgets/qtdesigner-app-tutorial.qdoc
blob: 06fcd438cf7cd0fac8c8a101d259f19beae308d5 (plain)
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
/****************************************************************************
**
** Copyright (c) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of Qt Creator
**
**
** 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.
**
**
****************************************************************************/

// **********************************************************************
// NOTE: the sections are not ordered by their logical order to avoid
// reshuffling the file each time the index order changes (i.e., often).
// Run the fixnavi.pl script to adjust the links to the index order.
// **********************************************************************

/*!
    \contentspage index.html
    \previouspage creator-qml-application.html
    \page creator-writing-program.html
    \nextpage creator-android-app-tutorial.html

    \title Creating a Qt Widget Based Application

    This tutorial describes how to use \QC to create a small Qt application,
    Text Finder. It is a simplified version of the Qt UI Tools \l{Text Finder
    example}. The application user interface is constructed from Qt widgets by
    using \QD. The application logic is written in C++ by using the code editor.

    \image qtcreator-textfinder-screenshot.png

    \section1 Creating the Text Finder Project

    \list 1

        \li Select \gui{File > New File or Project > Applications > Qt Widgets
            Application > Choose}.

            \image qtcreator-new-qt-gui-application.png "New File or Project dialog"

            The \gui{Introduction and Project Location} dialog opens.

            \image qtcreator-intro-and-location-qt-gui.png "Introduction and Project Location dialog"

        \li In the \gui{Name} field, type \b {TextFinder}.

        \li In the \gui {Create in} field, enter the path for the project files.
            For example, \c {C:\Qt\examples}, and then click \gui{Next} (on
            Windows and Linux) or \gui Continue (on Mac OS).

            The \gui {Kit Selection} dialog opens.

            \image qtcreator-new-project-qt-versions-qt-gui.png "Kit Selection dialog"

        \li Select build and run \l{glossary-buildandrun-kit}{kits} for your project,
            and click \gui Next or \gui Continue.

            \note If only one kit is specified in \gui Tools > \gui Options >
            \gui {Build & Run} > \gui Kits, this dialog is
            skipped.

            The \gui{Class Information} dialog opens.

            \image qtcreator-class-info-qt-gui.png "Class Information dialog"

        \li In the \gui{Class name} field, type \b {TextFinder} as the class
            name.

        \li In the \gui{Base class} list, select \b {QWidget} as the base
            class type.

           \note The \gui{Header file}, \gui{Source file} and \gui{Form file}
            fields are automatically updated to match the name of the class.

        \li Click \gui Next or \gui Continue.

            The \gui{Project Management} dialog opens.

            \image qtcreator-new-project-summary-qt-gui.png "Project Management dialog"

        \li Review the project settings, and click \gui{Finish} (on Windows and
            Linux) or \gui Done (on Mac OS) to create the project.

    \endlist

    \note The project opens in the \gui Edit mode, and these instructions are
    hidden. To return to these instructions, open the \gui Help mode.

    The TextFinder project now contains the following files:

    \list

        \li textfinder.h
        \li textfinder.cpp
        \li main.cpp
        \li textfinder.ui
        \li textfinder.pro

    \endlist

    \image qtcreator-textfinder-contents.png "TextFinder project contents"

    The .h and .cpp files come with the necessary boiler plate code.
    The .pro file is complete.

    \section1 Filling in the Missing Pieces

    Begin by designing the user interface and then move on to filling
    in the missing code. Finally, add the find functionality.

    \section2 Designing the User Interface

    \image qtcreator-textfinder-ui.png "Text Finder UI"

    \list 1

        \li In the \gui{Editor} mode, double-click the textfinder.ui file in the
            \gui{Projects} view to launch the integrated \QD.

        \li Drag and drop the following widgets to the form:

        \list

            \li \gui{Label} (QLabel)
            \li \gui{Line Edit} (QLineEdit)
            \li \gui{Push Button} (QPushButton)

        \endlist

        \image qtcreator-textfinder-ui-widgets.png "Adding widgets to Text Finder UI"

        \note To easily locate the widgets, use the search box at the top of the
        \gui Sidebar. For example, to find the \gui Label widget, start typing
        the word \b label.

        \image qtcreator-texfinder-filter.png "Filter field"

        \li Double-click the \gui{Label} widget and enter the text
            \b{Keyword}.

        \li Double-click the \gui{Push Button} widget and enter the text
            \b{Find}.

        \li In the \gui Properties pane, change the \gui objectName to
            \b findButton.

            \image qtcreator-textfinder-objectname.png "Changing object names"

        \li Press \key {Ctrl+A} (or \key {Cmd+A}) to select the widgets and
            click \gui{Lay out Horizontally} (or press \gui{Ctrl+H} on Linux or
            Windows or \key {Ctrl+Shift+H} on Mac OS) to apply a horizontal
            layout (QHBoxLayout).

            \image qtcreator-texfinder-ui-horizontal-layout.png "Applying horizontal layout"

        \li Drag and drop a \gui{Text Edit} widget (QTextEdit) to the form.

        \li Select the screen area and click \gui{Lay out Vertically} (or press
            \gui{Ctrl+L}) to apply a vertical layout (QVBoxLayout).

            \image qtcreator-textfinder-ui.png "Text Finder UI"

            Applying the horizontal and vertical layouts ensures that the
            application UI scales to different screen sizes.

        \li To call a find function when users press the \gui Find button, you
            use the Qt signals and slots mechanism. A signal is emitted when a
            particular event occurs and a slot is a function that is called in
            response to a particular signal. Qt widgets have predefined signals
            and slots that you can use directly from \QD. To add a slot for the
            find function:

            \list

                \li Right-click the \gui Find button to open a context-menu.

                \li Select \gui {Go to Slot > clicked()}, and then select
                    \gui OK.

                    A private slot, \c{on_findButton_clicked()}, is added to the
                    header file, textfinder.h and a private function,
                    \c{TextFinder::on_findButton_clicked()}, is added to the
                    source file, textfinder.cpp.

            \endlist

        \li Press \gui{Ctrl+S} (or \key {Cmd+S}) to save your changes.

    \endlist

    For more information about designing forms with \QD, see the
    \l{Qt Designer Manual}.

    \section2 Completing the Header File

    The textfinder.h file already has the necessary #includes, a constructor,
    a destructor, and the \c{Ui} object. You need to add a private function,
    \c{loadTextFile()}, to read and display the contents of the input text file
    in the QTextEdit.

    \list 1

        \li In the \gui{Projects} pane in the \gui {Edit view}, double-click the
            \c{textfinder.h} file to open it for editing.

        \li Add a private function to the \c{private} section, after the
            \c{Ui::TextFinder} pointer, as illustrated by the following code
            snippet:

            \snippet textfinder/textfinder.h 0

    \endlist

    \section2 Completing the Source File

    Now that the header file is complete, move on to the source file,
    textfinder.cpp.

    \list 1

        \li In the \gui{Projects} pane in the \gui Edit view, double-click the
            textfinder.cpp file to open it for editing.

        \li Add code to load a text file using QFile, read it with QTextStream,
            and then display it on \c{textEdit} with
            \l{QTextEdit::setPlainText()}.
            This is illustrated by the following code snippet:

            \snippet textfinder/textfinder.cpp 0

        \li To use QFile and QTextStream, add the following #includes to
            textfinder.cpp:

            \snippet textfinder/textfinder.cpp 1

        \li For the \c{on_findButton_clicked()} slot, add code to extract the
            search string and use the \l{QTextEdit::find()} function
            to look for the search string within the text file. This is
            illustrated by the following code snippet:

            \snippet textfinder/textfinder.cpp 2

        \li Once both of these functions are complete, add a line to call
            \c{loadTextFile()} in the constructor, as illustrated by the
            following code snippet:

            \snippet textfinder/textfinder.cpp 3

    \endlist

    The \c{on_findButton_clicked()} slot is called automatically in
    the uic generated ui_textfinder.h file by this line of code:

    \code
    QMetaObject::connectSlotsByName(TextFinder);
    \endcode

    \section2 Creating a Resource File

    You need a resource file (.qrc) within which you embed the input
    text file. The input file can be any .txt file with a paragraph of text.
    Create a text file called input.txt and store it in the textfinder
    folder.

    To add a resource file:

    \list 1

        \li Select \gui{File > New File or Project > Qt > Qt Resource File >
            Choose}.

            \image qtcreator-add-resource-wizard.png "New File or Project dialog"

            The \gui {Choose the Location} dialog opens.

            \image qtcreator-add-resource-wizard2.png "Choose the Location dialog"

        \li In the \gui{Name} field, enter \b{textfinder}.

        \li In the \gui{Path} field, enter \c{C:\Qt\examples\TextFinder},
            and click \gui Next or \gui Continue.

            The \gui{Project Management} dialog opens.

            \image qtcreator-add-resource-wizard3.png "Project Management dialog"


        \li In the \gui{Add to project} field, select \b{TextFinder.pro}
            and click \gui{Finish} or \gui Done to open the file in the code
            editor.

        \li Select \gui{Add > Add Prefix}.

        \li In the \gui{Prefix} field, replace the default prefix with a slash
            (/).

        \li Select \gui{Add > Add Files}, to locate and add input.txt.

            \image qtcreator-add-resource.png "Editing resource files"

    \endlist

    \section1 Compiling and Running Your Program

    Now that you have all the necessary files, click the
    \inlineimage qtcreator-run.png
    button to compile and run your program.

*/