|
| TreeDragDest (TreeDragDest &&src) noexcept |
|
TreeDragDest & | operator= (TreeDragDest &&src) noexcept |
|
| ~TreeDragDest () noexcept override |
|
GtkTreeDragDest * | gobj () |
| Provides access to the underlying C GObject.
|
|
const GtkTreeDragDest * | gobj () const |
| Provides access to the underlying C GObject.
|
|
bool | drag_data_received (const TreeModel::Path &dest, const Glib::ValueBase & value) |
| Asks the Gtk::TreeDragDest to insert a row before the path dest, deriving the contents of the row from value.
|
|
bool | row_drop_possible (const TreeModel::Path &dest_path, const Glib::ValueBase & value) const |
| Determines whether a drop is possible before the given dest_path, at the same depth as dest_path.
|
|
| Interface () |
|
| Interface (Interface &&src) noexcept |
|
Interface & | operator= (Interface &&src) noexcept |
|
| Interface (const Glib::Interface_Class &interface_class) |
|
| Interface (GObject *castitem) |
|
| ~Interface () noexcept override |
|
| Interface (const Interface &)=delete |
|
Interface & | operator= (const Interface &)=delete |
|
GObject * | gobj () |
|
const GObject * | gobj () const |
|
| ObjectBase (const ObjectBase &)=delete |
|
ObjectBase & | operator= (const ObjectBase &)=delete |
|
void | set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value) |
|
void | get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const |
|
void | set_property (const Glib::ustring &property_name, const PropertyType &value) |
|
void | get_property (const Glib::ustring &property_name, PropertyType &value) const |
|
PropertyType | get_property (const Glib::ustring &property_name) const |
|
sigc::connection | connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void()> &slot) |
|
sigc::connection | connect_property_changed (const Glib::ustring &property_name, sigc::slot< void()> &&slot) |
|
void | freeze_notify () |
|
void | thaw_notify () |
|
virtual void | reference () const |
|
virtual void | unreference () const |
|
GObject * | gobj () |
|
const GObject * | gobj () const |
|
GObject * | gobj_copy () const |
|
| trackable () noexcept |
|
| trackable (const trackable &src) noexcept |
|
| trackable (trackable &&src) noexcept |
|
| ~trackable () |
|
void | add_destroy_notify_callback (notifiable *data, func_destroy_notify func) const |
|
void | notify_callbacks () |
|
trackable & | operator= (const trackable &src) |
|
trackable & | operator= (trackable &&src) noexcept |
|
void | remove_destroy_notify_callback (notifiable *data) const |
|
Interface for Drag-and-Drop destinations in Gtk::TreeView.
- Deprecated:
- 4.10: List views use widgets to display their contents. You can use Gtk::DropTarget to implement a drop destination.
Asks the Gtk::TreeDragDest
to insert a row before the path dest, deriving the contents of the row from value.
If dest is outside the tree so that inserting before it is impossible, false
will be returned. Also, false
may be returned if the new row is not created for some model-specific reason. Should robustly handle a dest no longer found in the model!
Deprecated: 4.10: Use list models instead
- Parameters
-
dest | Row to drop in front of. |
value | Data to drop. |
- Returns
- Whether a new row was created before position dest.
Determines whether a drop is possible before the given dest_path, at the same depth as dest_path.
i.e., can we drop the data in value at that location. dest_path does not have to exist; the return value will almost certainly be false
if the parent of dest_path doesn’t exist, though.
Deprecated: 4.10: Use list models instead
- Parameters
-
dest_path | Destination row. |
value | The data being dropped. |
- Returns
true
if a drop is possible before dest_path.