RGtk2

RGtk2 is a set of R wrappers for the GTK+ graphical user interface library. RGtk2 is free software and licensed under the GPL.

RGtk2
Developer(s)Michael Lawrence and Duncan Temple Lang
Stable release
2.12.18
Operating systemCross-platform
PlatformCross-platform
Typewidget toolkit
LicenseGPL
Websitewww.ggobi.org/rgtk2

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:

gollark: Now, I know what you're thinking, "but gollarious one! Those aren't actually language choices available to you!".
gollark: It's a bash/Rust/Macron polyglot.
gollark: At least I've already written a great solution for next time.
gollark: Where's mine? This is ridiculous.
gollark: Oh, those are the solutions?

See also

References

    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.