Two Simple Qt Widgets▲
Sélectionnez
&
lt;script language=
"javascript"
&
gt;
function setColor( form )
{
Ax1.fillColor =
form.colorEdit.value;
}
function setWidth( form )
{
Ax2.lineWidth =
form.widthEdit.value;
}
&
lt;/
script&
gt;
&
lt;p /&
gt;
This is one QWidget subclass:&
lt;br /&
gt;
&
lt;object ID=
"Ax1"
CLASSID=
"CLSID:1D9928BD-4453-4bdd-903D-E525ED17FDE5"
CODEBASE=
"http://qt.nokia.com/demos/multipleax.cab"
&
gt;
[Object not
available!
Did you forget to build and
register
the server?]
&
lt;/
object&
gt;&
lt;br /&
gt;
&
lt;form&
gt;
Fill Color: &
lt;input type=
"edit"
ID=
"colorEdit"
value =
"red"
/&
gt;
&
lt;input type=
"button"
value =
"Set"
onClick=
"setColor(this.form)"
/&
gt;
&
lt;input type=
"button"
value =
"Hide"
onClick=
"Ax1.hide()"
/&
gt;
&
lt;input type=
"button"
value =
"Show"
onClick=
"Ax1.show()"
/&
gt;
&
lt;/
form&
gt;
&
lt;p /&
gt;
This is another QWidget subclass:&
lt;br /&
gt;
&
lt;object ID=
"Ax2"
CLASSID=
"CLSID:58139D56-6BE9-4b17-937D-1B1EDEDD5B71"
CODEBASE=
"http://qt.nokia.com/demos/multipleax.cab"
&
gt;
[Object not
available!
Did you forget to build and
register
the server?]
&
lt;/
object&
gt;&
lt;br /&
gt;
&
lt;form&
gt;
Line width: &
lt;input type=
"edit"
ID=
"widthEdit"
value =
"1"
/&
gt;
&
lt;input type=
"button"
value =
"Set"
onClick=
"setWidth(this.form)"
/&
gt;
&
lt;/
form&
gt;