Learn R Programming

gWidgets (version 0.0-25)

gwindow: Constructor for base container

Description

Widgets are packed inside containers which may in turn be packed inside other containers. The base container is known as a window. Only one container may be packed inside a window.

Usage

gwindow(title = "Window", visible = TRUE, name=title,
  width = NULL, height= NULL, location=NULL,
handler = NULL, action = NULL,
 ..., toolkit = guiToolkit())

Arguments

Details

A base window can also be created using the argument container=TRUE when constructing a widget.

The svalue method refers to the window title. Use svalue<- to change the title.

The add method is used to add a widget or container to the base window. Only one may be added, so usually it would be another container.

The dispose method destroys the window.

The size method sets the minimum size. Use the width and height arguments to set the default size when the window is constructed.

Examples

Run this code
win = gwindow("Window example", handler=function(h,...) print("See
  ya"))
  add(win,gbutton("Cancel", handler = function(h,...) dispose(win)))

Run the code above in your browser using DataLab