RGtk2
RGtk+ is a set of R wrappers for the GTK+ graphical user interface library. RGtk+ is free software and licensed under the GPL.
Syntax
The code below will produce a 200x200 pixel window with the words "Hello World" inside.
library(RGtk2)
createWindow <- function()
{
window <- gtkWindow()
label <- gtkLabel("Hello World")
window$add(label)
}
createWindow()
gtk.main()
Notable applications that use RGtk2
RGtk2 has been used in a number of notable applications, some examples:
See also
References
External links
|
|
Low-level |
|
|
High-level |
|
|
|
|
|
|
|
|
|
|
|
|
Cross-platform,
by language
|
|
|
|
XML
|
|
|
|
|
|
|
|
|
C or C++
|
|
|
Common Lisp
|
|
|
Object Pascal
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|