import Qt 4.7
import org.webkit 1.0
Rectangle {
width: webView.width
height: webView.height
WebView {
id: webView
width: 640
height: 480
url: 'http://html5demos.com/canvas-grad'
}
}
Of course, it is ready for HTML5.
import Qt 4.7
import org.webkit 1.0
Rectangle {
width: webView.width
height: webView.height
WebView {
id: webView
width: 640
height: 480
url: 'http://html5demos.com/canvas-grad'
}
}
Keynote Speakers
- Yukihiro "Matz" Matsumoto
- Chad Fowler
- Jeremy Kemper
Speakers
(This is quick notification. we'll make an announcement of detail soon.)
okkez, Jake Scruggs, Shay Friedman, paulelliott, Kenta Murata, Hideki Miura, Yasuko Ohba, Tanaka Akira, Masatoshi SEKI, Carl Lerche, Toshiyuki Terashita, geemus, tenderlove, Paolo "Nusco" Perrotta, Alex Sharp, nari, Shugo Maeda, Yusuke Endoh, Jiang Wu, Munjal Budhabhatti And Sudhindra Rao, Sarah Allen, Sarah Mei, Yehuda Katz, Ted Han, Shin-ichiro OGAWA, Tom Lieber, Masahiro Tanaka, Hiroshi Yoshioka, SHIBATA Hiroshi, Makoto Kuwata, jugyo, Kazuhiro NISHIYAMA, Shintaro Kakutani, Satoshi Shiba, Tetsu Soh, ujihisa, Makoto Inoue, Masaki Yamada, Kouhei Sutou, Yuki Sonoda, Kei Hamanaka, Yuichi Saotome
import Qt 4.7
Rectangle {
width: 200
height: 200
Text {
id: original
x: 60
y: 80
text: qsTr("Hello World")
MouseArea {
/* inherit parent item area to handle click event
because default area is none */
anchors.fill: parent
/* write acceptable buttons
because there are no default button events*/
acceptedButtons: Qt.LeftButton | Qt.RightButton
onClicked: { // hooked event when mouse is clicked
if (mouse.button == Qt.RightButton) {
parent.color = 'black';
} else {
parent.color = 'red';
}
}
}
}
Text {
x: original.x
y: original.y + 16
text: original.text + "!"
font {
family: "Helvetica"
pointSize: 12
italic: true
}
color: "blue"
transform: [Scale {
xScale: 1.25
yScale: 0.8
}, Rotation {
angle: 45
}]
smooth: true
}
}
# tar -zxvf qt-everywhere-opensource-src-4.7.0-beta1.tar.gz # cd qt-everywhere-opensource-src-4.7.0-beta1 # ./configure -declarative -optimized-qmake -nomake demos -nomake examples \ -no-qt3support -no-gtkstyle -system-sqlite -qt-sql-sqlite \ -opensource -prefix /opt/Qt-4.7.0 # gmake # gmake install
# chmod +x qt-creator-linux-x86-opensource-2.0.0-beta1.bin # ./qt-creator-linux-x86-opensource-2.0.0-beta1.bin
<fb:like expr:href="data:post.url"/>
<span id="fb-root"/>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'your_app_id', status: true, cookie: true, xfbml: true});
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>