aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp
blob: 2557f863638bdc7bd293f873d464e54733137402 (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
//! [0]
myEngine = QScriptEngine()
myObject = myEngine.newObject()
myOtherObject = myEngine.newObject()
myObject.setProperty("myChild", myOtherObject)
myObject.setProperty("name", "John Doe")
//! [0]


//! [1]
val = QScriptValue(myEngine, 123)
myObject.setProperty("myReadOnlyProperty", val, QScriptValue.ReadOnly)
//! [1]


//! [2]
engine = QScriptEngine()
engine.evaluate("function fullName() { return this.firstName + ' ' + this.lastName; }")
engine.evaluate("somePerson = { firstName: 'John', lastName: 'Doe' }")

global_ = engine.globalObject()
fullName = global_.property("fullName")
who = global_.property("somePerson")
print fullName.call(who).toString() # "John Doe"

engine.evaluate("function cube(x) { return x * x * x; }")
QScriptValue cube = global_.property("cube")
args = QScriptValueList()
args << 3
print cube.call(QScriptValue(), args).toNumber() # 27
//! [2]


//! [3]

def myNativeFunction(context, engine):
    otherFunction = ...

    return otherFunction.call(context.thisObject(), context.argumentsObject())

//! [3]