Gtk::Editable Class Reference
Inheritance diagram for Gtk::Editable:

Detailed Description
Base class for text-editing widgets.The Gtk::Editable class is a base class for widgets for editing text, such as Gtk::Entry. It cannot be instantiated by itself. The editable class contains functions for generically manipulating an editable widget, a large number of action signals used for key bindings, and several signals that an application can connect to to modify the behavior of a widget.
Public Member Functions | |
void | copy_clipboard () |
void | cut_clipboard () |
void | delete_selection () |
void | delete_text (int start_pos, int end_pos) |
Glib::ustring | get_chars (int start_pos, int end_pos) const |
bool | get_editable () const |
Retrieves whether editable is editable. | |
int | get_position () const |
bool | get_selection_bounds (int& start_pos, int& end_pos) const |
const GtkEditable* | gobj () const |
Provides access to the underlying C GObject. | |
GtkEditable* | gobj () |
Provides access to the underlying C GObject. | |
void | insert_text (const Glib::ustring& text, int length, int& position) |
void | paste_clipboard () |
void | select_region (int start_pos, int end_pos) |
void | set_editable (bool is_editable=true) |
void | set_position (int position) |
Glib::SignalProxy0<void> | signal_changed () |
Glib::SignalProxy2< void, int, int > | signal_delete_text () |
Glib::SignalProxy2< void, const Glib::ustring&, int* > | signal_insert_text () |
virtual | ~Editable () |
Static Public Member Functions | |
static void | add_interface (GType gtype_implementer) |
Protected Member Functions | |
virtual void | delete_text_vfunc (int start_pos, int end_pos) |
virtual Glib::ustring | get_chars_vfunc (int start_pos, int end_pos) const |
virtual int | get_position_vfunc () const |
virtual bool | get_selection_bounds_vfunc (int& start_pos, int& end_pos) const |
virtual void | insert_text_vfunc (const Glib::ustring& text, int& position) |
virtual void | on_changed () |
virtual void | on_delete_text (int start_pos, int end_pos) |
virtual void | on_insert_text (const Glib::ustring& text, int* position) |
virtual void | select_region_vfunc (int start_pos, int end_pos) |
virtual void | set_position_vfunc (int position) |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr<Gtk::Editable> | wrap (GtkEditable* object, bool take_copy=false) |
A Glib::wrap() method for this object. |
Constructor & Destructor Documentation
virtual Gtk::Editable::~Editable | ( | ) | [virtual] |
Member Function Documentation
static void Gtk::Editable::add_interface | ( | GType | gtype_implementer | ) | [static] |
void Gtk::Editable::copy_clipboard | ( | ) |
void Gtk::Editable::cut_clipboard | ( | ) |
void Gtk::Editable::delete_selection | ( | ) |
void Gtk::Editable::delete_text | ( | int | start_pos, | |
int | end_pos | |||
) |
virtual void Gtk::Editable::delete_text_vfunc | ( | int | start_pos, | |
int | end_pos | |||
) | [protected, virtual] |
Glib::ustring Gtk::Editable::get_chars | ( | int | start_pos, | |
int | end_pos | |||
) | const |
virtual Glib::ustring Gtk::Editable::get_chars_vfunc | ( | int | start_pos, | |
int | end_pos | |||
) | const [protected, virtual] |
bool Gtk::Editable::get_editable | ( | ) | const |
int Gtk::Editable::get_position | ( | ) | const |
virtual int Gtk::Editable::get_position_vfunc | ( | ) | const [protected, virtual] |
bool Gtk::Editable::get_selection_bounds | ( | int & | start_pos, | |
int & | end_pos | |||
) | const |
virtual bool Gtk::Editable::get_selection_bounds_vfunc | ( | int & | start_pos, | |
int & | end_pos | |||
) | const [protected, virtual] |
const GtkEditable* Gtk::Editable::gobj | ( | ) | const [inline] |
GtkEditable* Gtk::Editable::gobj | ( | ) | [inline] |
void Gtk::Editable::insert_text | ( | const Glib::ustring & | text, | |
int | length, | |||
int & | position | |||
) |
virtual void Gtk::Editable::insert_text_vfunc | ( | const Glib::ustring & | text, | |
int & | position | |||
) | [protected, virtual] |
virtual void Gtk::Editable::on_changed | ( | ) | [protected, virtual] |
virtual void Gtk::Editable::on_delete_text | ( | int | start_pos, | |
int | end_pos | |||
) | [protected, virtual] |
virtual void Gtk::Editable::on_insert_text | ( | const Glib::ustring & | text, | |
int * | position | |||
) | [protected, virtual] |
void Gtk::Editable::paste_clipboard | ( | ) |
void Gtk::Editable::select_region | ( | int | start_pos, | |
int | end_pos | |||
) |
virtual void Gtk::Editable::select_region_vfunc | ( | int | start_pos, | |
int | end_pos | |||
) | [protected, virtual] |
void Gtk::Editable::set_editable | ( | bool | is_editable = true |
) |
void Gtk::Editable::set_position | ( | int | position | ) |
virtual void Gtk::Editable::set_position_vfunc | ( | int | position | ) | [protected, virtual] |
Glib::SignalProxy0< void > Gtk::Editable::signal_changed | ( | ) |
- Prototype:
void on_my_changed()
Glib::SignalProxy2< void,int,int > Gtk::Editable::signal_delete_text | ( | ) |
- Prototype:
void on_my_delete_text(int start_pos, int end_pos)
Glib::SignalProxy2< void,const Glib::ustring&,int* > Gtk::Editable::signal_insert_text | ( | ) |
Friends And Related Function Documentation
Glib::RefPtr<Gtk::Editable> wrap | ( | GtkEditable * | object, | |
bool | take_copy = false | |||
) | [related] |
A Glib::wrap() method for this object.
- Parameters:
-
object The C instance. take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
- Returns:
- A C++ instance that wraps this C instance.
The documentation for this class was generated from the following file: