author | Alex Gilkes <alex.gilkes@nokia.com> |
Mon, 11 Jan 2010 14:00:40 +0000 | |
changeset 0 | 1918ee327afb |
permissions | -rw-r--r-- |
0 | 1 |
function QAxWidget2::Click() |
2 |
{ |
|
3 |
QAxWidget2.lineWidth++; |
|
4 |
MainWindow.logMacro(0, "Hello from JavaScript: QAxWidget2::Click", 0, ""); |
|
5 |
} |
|
6 |
||
7 |
function fatLines() |
|
8 |
{ |
|
9 |
QAxWidget2.lineWidth = 25; |
|
10 |
} |
|
11 |
||
12 |
function thinLines() |
|
13 |
{ |
|
14 |
QAxWidget2.lineWidth = 1; |
|
15 |
} |
|
16 |
||
17 |
function setLineWidth(width) |
|
18 |
{ |
|
19 |
QAxWidget2.lineWidth = width; |
|
20 |
} |
|
21 |
||
22 |
function getLineWidth() |
|
23 |
{ |
|
24 |
return(QAxWidget2.lineWidth) |
|
25 |
} |