//
// Copyright (c) 2008, Brian Frank and Andy Frank
// Licensed under the Academic Free License version 3.0
//
// History:
// 1 Sep 08 Brian Frank Creation
//
using gfx
using fwt
**
** HtmlView uses the web browser to view HTML.
**
internal class HtmlView : View
{
override Void onLoad()
{
browser := WebBrowser()
{
it.onHyperlink.add |e| { this.onHyperlink(e) }
}
content = BorderPane
{
it.content = browser
it.border = Border("0,0,0,1 $Desktop.sysNormShadow")
}
browser.load(resource.uri)
}
Void onHyperlink(Event event)
{
// don't hyperlink in place, instead we route the
// hyperlink to the flux frame so that we get consistent
// navigation
Uri uri := event.data
event.data = null
frame.load(uri)
}
}