R-Forge Logo

About

A brief description of the packages available from this r-forge project:

Examples

A basic hello world application can be made as follows:
library(gWidgets)
options(guiToolkit="RGtk2")                     # avoid question if more than one is installed
w <- gwindow("Hello world example")             # top level window
g <- ggroup(cont=w, horizontal=FALSE)           # a box container, added to w
b <- gbutton("Click me for a message", cont=g)  # add button to container g
addHandlerClicked(b, handler=function(h,...) {  # add interactivity through a handler
      galert("Hello world", parent=h$obj)
})
The gWidgets vignette is a source of further examples. Addtionally, some more examples may be found here.

The project summary page you can find here.

Old web site here.