~ubuntu-branches/ubuntu/wily/qtbase-opensource-src/wily

« back to all changes in this revision

Viewing changes to src/corelib/doc/snippets/code/src_corelib_kernel_qvariant.cpp

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 12:46:17 UTC
  • Revision ID: package-import@ubuntu.com-20130205124617-c8jouts182j002fx
Tags: upstream-5.0.1+dfsg
ImportĀ upstreamĀ versionĀ 5.0.1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the documentation of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:BSD$
 
9
** You may use this file under the terms of the BSD license as follows:
 
10
**
 
11
** "Redistribution and use in source and binary forms, with or without
 
12
** modification, are permitted provided that the following conditions are
 
13
** met:
 
14
**   * Redistributions of source code must retain the above copyright
 
15
**     notice, this list of conditions and the following disclaimer.
 
16
**   * Redistributions in binary form must reproduce the above copyright
 
17
**     notice, this list of conditions and the following disclaimer in
 
18
**     the documentation and/or other materials provided with the
 
19
**     distribution.
 
20
**   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
 
21
**     of its contributors may be used to endorse or promote products derived
 
22
**     from this software without specific prior written permission.
 
23
**
 
24
**
 
25
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
26
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
27
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
28
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
29
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
30
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
31
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
32
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
33
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
34
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
35
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
36
**
 
37
** $QT_END_LICENSE$
 
38
**
 
39
****************************************************************************/
 
40
 
 
41
//! [0]
 
42
QDataStream out(...);
 
43
QVariant v(123);                // The variant now contains an int
 
44
int x = v.toInt();              // x = 123
 
45
out << v;                       // Writes a type tag and an int to out
 
46
v = QVariant("hello");          // The variant now contains a QByteArray
 
47
v = QVariant(tr("hello"));      // The variant now contains a QString
 
48
int y = v.toInt();              // y = 0 since v cannot be converted to an int
 
49
QString s = v.toString();       // s = tr("hello")  (see QObject::tr())
 
50
out << v;                       // Writes a type tag and a QString to out
 
51
...
 
52
QDataStream in(...);            // (opening the previously written stream)
 
53
in >> v;                        // Reads an Int variant
 
54
int z = v.toInt();              // z = 123
 
55
qDebug("Type is %s",            // prints "Type is int"
 
56
        v.typeName());
 
57
v = v.toInt() + 100;            // The variant now hold the value 223
 
58
v = QVariant(QStringList());
 
59
//! [0]
 
60
 
 
61
 
 
62
//! [1]
 
63
QVariant x, y(QString()), z(QString(""));
 
64
x.convert(QVariant::Int);
 
65
// x.isNull() == true
 
66
// y.isNull() == true, z.isNull() == false
 
67
//! [1]
 
68
 
 
69
 
 
70
//! [2]
 
71
QVariant variant;
 
72
...
 
73
QColor color = variant.value<QColor>();
 
74
//! [2]
 
75
 
 
76
 
 
77
//! [3]
 
78
QColor color = palette().background().color();
 
79
QVariant variant = color;
 
80
//! [3]
 
81
 
 
82
 
 
83
//! [4]
 
84
QVariant v;
 
85
 
 
86
v.setValue(5);
 
87
int i = v.toInt();         // i is now 5
 
88
QString s = v.toString()   // s is now "5"
 
89
 
 
90
MyCustomStruct c;
 
91
v.setValue(c);
 
92
 
 
93
...
 
94
 
 
95
MyCustomStruct c2 = v.value<MyCustomStruct>();
 
96
//! [4]
 
97
 
 
98
 
 
99
//! [5]
 
100
QVariant v;
 
101
 
 
102
MyCustomStruct c;
 
103
if (v.canConvert<MyCustomStruct>())
 
104
    c = v.value<MyCustomStruct>();
 
105
 
 
106
v = 7;
 
107
int i = v.value<int>();                        // same as v.toInt()
 
108
QString s = v.value<QString>();                // same as v.toString(), s is now "7"
 
109
MyCustomStruct c2 = v.value<MyCustomStruct>(); // conversion failed, c2 is empty
 
110
//! [5]
 
111
 
 
112
 
 
113
//! [6]
 
114
QVariant v = 42;
 
115
 
 
116
v.canConvert<int>();              // returns true
 
117
v.canConvert<QString>();          // returns true
 
118
 
 
119
MyCustomStruct s;
 
120
v.setValue(s);
 
121
 
 
122
v.canConvert<int>();              // returns false
 
123
v.canConvert<MyCustomStruct>();   // returns true
 
124
//! [6]
 
125
 
 
126
 
 
127
//! [7]
 
128
MyCustomStruct s;
 
129
return QVariant::fromValue(s);
 
130
//! [7]
 
131
 
 
132
 
 
133
//! [8]
 
134
QObject *object = getObjectFromSomewhere();
 
135
QVariant data = QVariant::fromValue(object);
 
136
//! [8]