aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/doc_src_qt4-intro.qdoc
blob: ced563e7da362b7bba63333ca580535fef57063d (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
//! [0]
QT -= gui
//! [0]


//! [1]
QT += network opengl sql qt3support
//! [1]


//! [2]
CONFIG += uic3
//! [2]


//! [3]
#include <QClassName>
//! [3]


//! [4]
#include <QString>
#include <QApplication>
#include <QSqlTableModel>
//! [4]


//! [5]
#include <qclassname.h>
//! [5]


//! [6]
#include <QtCore>
//! [6]


//! [7]
using namespace Qt;
//! [7]


//! [8]
QLabel *label1 = new QLabel("Hello", this);
QLabel *label2 = new QLabel(this, "Hello");
//! [8]


//! [9]
MyWidget::MyWidget(QWidget *parent, const char *name)
    : QWidget(parent, name)
{
    ...
}
//! [9]


//! [10]
// DEPRECATED
if (obj->inherits("QPushButton")) {
    QPushButton *pushButton = (QPushButton *)obj;
    ...
}
//! [10]


//! [11]
QPushButton *pushButton = qobject_cast<QPushButton *>(obj);
if (pushButton) {
    ...
}
//! [11]


//! [12]
QLabel *label = new QLabel;
QPointer<QLabel> safeLabel = label;
safeLabel->setText("Hello world!");
delete label;
// safeLabel is now 0, whereas label is a dangling pointer
//! [12]


//! [13]
QT += qt3support
//! [13]


//! [14]
DEFINES += QT3_SUPPORT
//! [14]


//! [15]
DEFINES += QT3_SUPPORT_WARNINGS
//! [15]


//! [16]
DEFINES += QT3_SUPPORT
//! [16]