mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-25 11:21:08 -08:00
24 lines
680 B
HTML
24 lines
680 B
HTML
<html>
|
|
<body style="font-family: Arial; font-size: small;">
|
|
<h2 style="color: navy">Simple QWebPluginFactory Example</h2>
|
|
<object type="application/x-clock" width="150" height="150">
|
|
<param name="show-minutes" value="true" />
|
|
<param name="show-seconds" value="false" />
|
|
</object>
|
|
<p>
|
|
<label>
|
|
<input type="checkbox"
|
|
checked
|
|
onclick="Lisp.setParams('show-minutes', this.checked)">
|
|
show minutes
|
|
</label>
|
|
<br>
|
|
<label>
|
|
<input type="checkbox"
|
|
onclick="Lisp.setParams('show-seconds', this.checked)">
|
|
show seconds
|
|
</label>
|
|
</p>
|
|
</body>
|
|
</html>
|
|
|