gui: A GUI object.

Description Usage Arguments See Also Examples

Description

The gui object contains and manages GUI-related data.

Usage

1
2
3
4
5
6
7
## S3 method for class 'gui'
gui$x

## S3 method for class 'gui'
print(x, ...)

is.gui(x)

Arguments

gui

A gui object..

x

An object or a function for $.

...

Further arguments (not used yet).

See Also

gui_add()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Create a GUI
gui_add("myGUI")
is.gui(myGUI)
myGUI
# Put an object in the GUI environment (fake button)
myGUI$button <- "my_button"
# Retrieve it
myGUI$button
# Get the curent status of the GUI
myGUI$status
# Eliminate this GUI and all its objects
gui_remove("myGUI")

Example output

Graphical User Interface: myGUI
using widgets from: nativeGUI, textCLI
[1] TRUE
Graphical User Interface: myGUI
using widgets from: nativeGUI, textCLI
[1] "my_button"
NULL

svGUI documentation built on April 17, 2021, 1:08 a.m.