Interface for widgets which are used for editing cells.
More...
#include <gtkmm/celleditable.h>
|
static void | add_interface (GType gtype_implementer) |
|
static GType | get_type () |
| Get the GType for this class, for use with the underlying GObject type system.
|
|
|
(Note that these are not member functions.)
|
Glib::RefPtr< Gtk::CellEditable > | wrap (GtkCellEditable * object, bool take_copy=false) |
| A Glib::wrap() method for this object.
|
|
Interface for widgets which are used for editing cells.
The CellEditable interface must be implemented for widgets to be usable when editing the contents of a TreeView cell.
- Deprecated:
- 4.10: List views use widgets for displaying their contents. See Gtk::Editable for editable text widgets.
◆ CellEditable() [1/2]
Gtk::CellEditable::CellEditable |
( |
| ) |
|
|
protected |
You should derive from this class to use it.
◆ CellEditable() [2/2]
◆ ~CellEditable()
Gtk::CellEditable::~CellEditable |
( |
| ) |
|
|
overridenoexcept |
◆ add_interface()
static void Gtk::CellEditable::add_interface |
( |
GType |
gtype_implementer | ) |
|
|
static |
◆ editing_done()
void Gtk::CellEditable::editing_done |
( |
| ) |
|
Emits the GtkCellEditable::editing-done
signal.
Deprecated: 4.10
- Deprecated:
- See Gtk::Editable for editable text widgets.
◆ get_type()
static GType Gtk::CellEditable::get_type |
( |
| ) |
|
|
static |
Get the GType for this class, for use with the underlying GObject type system.
◆ gobj() [1/2]
GtkCellEditable * Gtk::CellEditable::gobj |
( |
| ) |
|
|
inline |
Provides access to the underlying C GObject.
◆ gobj() [2/2]
const GtkCellEditable * Gtk::CellEditable::gobj |
( |
| ) |
const |
|
inline |
Provides access to the underlying C GObject.
◆ on_editing_done()
virtual void Gtk::CellEditable::on_editing_done |
( |
| ) |
|
|
protectedvirtual |
◆ on_remove_widget()
virtual void Gtk::CellEditable::on_remove_widget |
( |
| ) |
|
|
protectedvirtual |
◆ operator=()
◆ property_editing_canceled() [1/2]
Glib::PropertyProxy< bool > Gtk::CellEditable::property_editing_canceled |
( |
| ) |
|
Indicates whether editing on the cell has been canceled.
- Deprecated:
- See Gtk::Editable for editable text widgets.
Default value: false
- Returns
- A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
◆ property_editing_canceled() [2/2]
Glib::PropertyProxy_ReadOnly< bool > Gtk::CellEditable::property_editing_canceled |
( |
| ) |
const |
Indicates whether editing on the cell has been canceled.
- Deprecated:
- See Gtk::Editable for editable text widgets.
Default value: false
- Returns
- A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
◆ remove_widget()
void Gtk::CellEditable::remove_widget |
( |
| ) |
|
Emits the GtkCellEditable::remove-widget
signal.
Deprecated: 4.10
- Deprecated:
- See Gtk::Editable for editable text widgets.
◆ signal_editing_done()
Glib::SignalProxy< void()> Gtk::CellEditable::signal_editing_done |
( |
| ) |
|
- Slot Prototype:
void on_my_editing_done()
Flags: Run Last
This signal is a sign for the cell renderer to update its value from the cell_editable.
Implementations of Gtk::CellEditable
are responsible for emitting this signal when they are done editing, e.g. Gtk::Entry
emits this signal when the user presses Enter. Typical things to do in a handler for signal_editing_done() are to capture the edited value, disconnect the cell_editable from signals on the Gtk::CellRenderer
, etc.
Gtk::CellEditable::editing_done() is a convenience method for emitting GtkCellEditable::editing-done
.
- Deprecated:
- See Gtk::Editable for editable text widgets.
◆ signal_remove_widget()
Glib::SignalProxy< void()> Gtk::CellEditable::signal_remove_widget |
( |
| ) |
|
- Slot Prototype:
void on_my_remove_widget()
Flags: Run Last
This signal is meant to indicate that the cell is finished editing, and the cell_editable widget is being removed and may subsequently be destroyed.
Implementations of Gtk::CellEditable
are responsible for emitting this signal when they are done editing. It must be emitted after the GtkCellEditable::editing-done
signal, to give the cell renderer a chance to update the cell's value before the widget is removed.
Gtk::CellEditable::remove_widget() is a convenience method for emitting GtkCellEditable::remove-widget
.
- Deprecated:
- See Gtk::Editable for editable text widgets.
◆ start_editing()
void Gtk::CellEditable::start_editing |
( |
const Glib::RefPtr< const Gdk::Event > & |
event | ) |
|
◆ start_editing_vfunc()
virtual void Gtk::CellEditable::start_editing_vfunc |
( |
const Glib::RefPtr< const Gdk::Event > & |
event | ) |
|
|
protectedvirtual |
◆ wrap()
Glib::RefPtr< Gtk::CellEditable > wrap |
( |
GtkCellEditable * |
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.