Java_WebKit

1、

http://tieba.baidu.com/p/2807579276

 

下载地址:

http://qtjambi.org/downloads

https://qt.gitorious.org/qt-jambi/qtjambi-community?p=qt-jambi:qtjambi-community.git;a=shortlog;h=refs/heads/master

 

2、

2.1、支持的版本范围,以及尚未支持Qt5 及注意点:

http://wiki.qt.io/Qt_Jambi

 

3、如何编译qtjambi:

http://qtjambi.org/doc/building

 

4、ZC 我的测试代码:

package z;

import com.trolltech.qt.core.QObject;
//import com.trolltech.qt.core.QUrl;
import com.trolltech.qt.gui.QApplication;
import com.trolltech.qt.webkit.QWebView;


public class Browser extends QObject
{
    public static void main(String args[])
    {
        QApplication.initialize(args);
        QWebView view = new QWebView();
        view.setGeometry(50, 50, 800, 600);
        view.setHtml("<button onclick=\"alert('哈喽沃德');\" style=\"width:100px; height:100px; border-radius:100px; border:1px solid #ccc; background:#f3f3f3; font-size:12px; color:#000; cursor:pointer;\">我是一个按钮</button>");
        //view.load(new QUrl("http://www.baidu.com")); 
        view.show();
        QApplication.execStatic();//.exec();
        QApplication.quit();
    }
}

 

5、

 

posted @ 2016-07-11 16:58  JavaSkill  阅读(1735)  评论(0编辑  收藏  举报