その最新の Qt 5.1.2 を使用すると、Windows 8 タッチスクリーンで実行すると、ボタンの onclick イベントが発生しません。Qt 5.0 を使用すると、問題なく起動します。
再現するには、html5application テスト アプリを作成し、index.html をこれに変更します (つまり、ボタンと onclick ハンドラーを追加します)。5.0 に対してビルドし、Windows 8 タブレットで実行すると、ボタンをタッチすると JavaScript アラートが表示されます。最新の Qt 5.1.2 に対してコンパイルすると、フィードバックは得られません。
私が間違っていることについてのアイデアはありますか?これはバグですか、それとも最新の Qt の機能ですか?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body { margin: 0; font-size: 2em; background-color: white; }
h1 { text-align: center; color: red; }
h1 + h1 { color: green; }
h1:last-child { color: blue; }
#quit { background-color: gray; color: white; font-weight: bold; display: block; text-align: right; }
</style>
<script type="text/javascript">
var counter = 0;
function toggleElement()
{
var elements = document.getElementsByTagName('h1');
for (var i = 0; i < elements.length; ++i)
elements[i].style.display = (counter % elements.length) == i ? '' : 'none';
counter++;
setTimeout('toggleElement()', 1000);
}
window.onload = function()
{
document.getElementById("quit").onmousedown = function()
{
Qt.quit();
};
toggleElement();
}
function clicked()
{
alert("Clicked");
}
</script>
</head>
<body>
<a id="quit">X</a>
<h1>Hello</h1>
<h1>HTML5</h1>
<h1>World</h1>
<p><button type="button" onclick="clicked()">Click Me!</button></p>
</body>
</html>