Class Index Cross Index Namespace Index

Class Gtk::Button


Contained in: Gtk
Derived from: Gtk::Bin
Derived by: Gtk::OptionMenu Gtk::ToggleButton

#include <gtk--/button.h>


public function member index:

Button();
explicit Button(const string& label, gfloat x=0.5, gfloat y=0.5);
emitable signal void clicked();
emitable signal void enter();
GtkReliefStyle get_relief() const;
GtkButton* gtkobj();
const GtkButton* gtkobj() const;
static bool isA(Object* object);
emitable signal void leave();
emitable signal void pressed();
emitable signal void released();
void set_relief(GtkReliefStyle newstyle);
virtual ~Button();
 

protected function member index:

virtual void clicked_impl();
virtual void enter_impl();
virtual void leave_impl();
virtual void pressed_impl();
virtual void released_impl();
 

Description:



Function Member Descriptions:

Gtk::Button::Button - Create an empty button.

Button();
With an empty button, you can Gtk_Button::add a widget such as a Gtk_Pixmap} or Gtk_Box}.

If you just wish to add a Gtk_Label, you may want to use the Gtk_Button(const string &label)} ctor directly instead.



Gtk::Button::Button - Simple Push Button with label.

explicit Button(const string& label, gfloat x=0.5, gfloat y=0.5);
Create a button with the given label inside. You won't be able to add a widget in this button since it already has a Gtk_Label in it.


Gtk::Button::clicked - Emitted on button press and release.

emitable signal void clicked();
virtual void clicked_impl();
Triggered when the user has pressed and released the mouse button This is the signal you most likely want to connect.


Gtk::Button::enter - Triggered when the mouse cursor enters the button

emitable signal void enter();
virtual void enter_impl();

Gtk::Button::get_relief - Return the button's relief style (see properties table)

GtkReliefStyle get_relief() const;

Gtk::Button::gtkobj - Returns the underlaying gtk+ object.

GtkButton* gtkobj();

Gtk::Button::isA - Returns true if object is this type.

static bool isA(Object* object);

Gtk::Button::leave - Triggered when the mouse cursor leaves the button

emitable signal void leave();
virtual void leave_impl();

Gtk::Button::pressed - Emited on button press.

emitable signal void pressed();
virtual void pressed_impl();
Triggered when the button is pressed (e.g. the mouse button is still down, it hasn't been released yet, see next signal)


Gtk::Button::released - Triggered when the user has released the mouse button

emitable signal void released();
virtual void released_impl();

Gtk::Button::set_relief - Set the button's relief style (see properties table)

void set_relief(GtkReliefStyle newstyle);