R/qhelp.R

Defines functions qwebbrowser

Documented in qwebbrowser

##' .. content for \description{} (no empty lines) ..
##'
##' .. content for \details{} ..
##' @title A Qt web browser widget
##' @param url The URL to view.
##' @param ... Ignored.
##' @return A QWebView instance
##' @author Deepayan Sarkar
qwebbrowser <- function(url, ...)
{
    w <- Qt$QWebView()
    w$load(Qt$QUrl(url))
    ## w$setWindowTitle(w$title())
    ## w$show()
    w
}

Try the qtutils package in your browser

Any scripts or data that you put into this service are public.

qtutils documentation built on May 29, 2017, 5:54 p.m.