GtkButton {RGtk2} | R Documentation |
A widget that creates a signal when clicked on
gtkButtonNew(show = TRUE)
gtkButtonNewWithLabel(label, show = TRUE)
gtkButtonNewWithMnemonic(label, show = TRUE)
gtkButtonNewFromStock(stock.id, show = TRUE)
gtkButtonPressed(object)
gtkButtonReleased(object)
gtkButtonClicked(object)
gtkButtonEnter(object)
gtkButtonLeave(object)
gtkButtonSetRelief(object, newstyle)
gtkButtonGetRelief(object)
gtkButtonGetLabel(object)
gtkButtonSetLabel(object, label)
gtkButtonGetUseStock(object)
gtkButtonSetUseStock(object, use.stock)
gtkButtonGetUseUnderline(object)
gtkButtonSetUseUnderline(object, use.underline)
gtkButtonSetFocusOnClick(object, focus.on.click)
gtkButtonGetFocusOnClick(object)
gtkButtonSetAlignment(object, xalign, yalign)
gtkButtonGetAlignment(object)
gtkButtonSetImage(object, image)
gtkButtonGetImage(object)
gtkButtonSetImagePosition(object, position)
gtkButtonGetImagePosition(object)
gtkButton(label, stock.id, show = TRUE)
GObject +----GInitiallyUnowned +----GtkObject +----GtkWidget +----GtkContainer +----GtkBin +----GtkButton +----GtkToggleButton +----GtkColorButton +----GtkFontButton +----GtkLinkButton +----GtkOptionMenu +----GtkScaleButton
GtkButton implements
AtkImplementorIface, GtkBuildable
and GtkActivatable
.
The GtkButton
widget is generally used to attach a function to that
is called when the button is pressed. The various signals and how to use
them are outlined below.
The GtkButton
widget can hold any valid child widget. That is it can
hold most any other standard GtkWidget
. The most commonly used child is
the GtkLabel
.
GtkButton
This should not be accessed directly. Use the accessor functions below.
gtkButton
is the result of collapsing the constructors of GtkButton
(gtkButtonNew
, gtkButtonNewWithLabel
, gtkButtonNewFromStock
, gtkButtonNewWithMnemonic
) and accepts a subset of its arguments matching the required arguments of one of its delegate constructors.
Derived by RGtkGen from GTK+ documentation
http://library.gnome.org/devel//gtk/GtkButton.html