Skip to content
This repository was archived by the owner on Dec 15, 2021. It is now read-only.

Latest commit

 

History

History
28 lines (18 loc) · 452 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 452 Bytes

WebImageView

==============

WebImageView for BlackBerry Cascades, a fork from https://github.com/RodgerLeblanc/WebImageView and improved with much better performance.

see code for details.

how to use

register this control in your main.cpp:

qmlRegisterType<WebImageView>("lab.anpho", 1, 0, "WebImageView");

then you can use it in QML.

import lab.anpho 1.0
WebImageView{
	url : "http://someplace.com/somepic.jpg"
}