最近專案中使用qt框架開發pc端軟體,所以耐著性子學習了一下qt相關的東西。
下面是qt中qwebview的使用方法,覺得蠻方便的。
我使用的開發環境是:win7+qt開發庫+qtcreator-2.8.0+vs2008編譯器msvc。
首先建立乙個空的qt專案,取名字為:webviewdemo
再建立乙個main.cpp,**如下:
[cpp]view plain
copy
#include
#include
intmain(
intargc,
char
*argv)
然後修改qt工程配置檔案webviewdemo.pro,內容如下:
[cpp]view plain
copy
qt += core guiwebkit
greaterthan(qt_major_version, 4): qt += widgets
target = webviewdemo
sources += \
main.cpp
注意:關鍵是新增了webkit模組的支援。
執行效果如下:
jQuery cookie的使用例子
這是乙個jquery cookie的使用例子,通過本示例的學習希望朋友們能熟悉在引入jquery.cookie.js外掛程式後,如何去使用它,你可以了解到cookie天數設定 日期設定 多個cookie的設定 如何獲取cookie 通過 date 物件設定過期日期為 3 天後的那天 設定有效期天數等...
使用引數的例子
usr bin python filename cat.py import sys def readfile filename print a file to the standard output.f file filename while true line f.readline if len ...
Mutex Object的使用例子
include include define threadcount 2 handle ghmutex dword winapi writetodatabase lpvoid int main void create worker threads for i 0 i threadcount i wa...