|
virtual | ~Tooltips () |
|
GtkTooltips* | gobj () |
| Provides access to the underlying C GtkObject. More...
|
|
const GtkTooltips* | gobj () const |
| Provides access to the underlying C GtkObject. More...
|
|
| Tooltips () |
|
void | enable () |
|
void | disable () |
|
void | set_tip (Widget& widget, const Glib::ustring& tip_text, const Glib::ustring& tip_private) |
| Adds a tooltip containing the message tip_text to the specified Gtk::Widget. More...
|
|
void | set_tip (Widget& widget, const Glib::ustring& tip_text) |
|
void | unset_tip (Widget& widget) |
|
void | force_window () |
|
virtual | ~Object () |
|
GtkObject* | gobj () |
| Provides access to the underlying C GtkObject. More...
|
|
const GtkObject* | gobj () const |
| Provides access to the underlying C GtkObject. More...
|
|
Glib::PropertyProxy< void* > | property_user_data () |
| Anonymous User Data Pointer. More...
|
|
Glib::PropertyProxy_ReadOnly< void* > | property_user_data () const |
| Anonymous User Data Pointer. More...
|
|
| Object (const Object &)=delete |
|
Object & | operator= (const Object &)=delete |
|
| Object (Object &&src) noexcept |
|
Object & | operator= (Object &&src) noexcept |
|
void * | get_data (const QueryQuark &key) |
|
void | set_data (const Quark &key, void *data) |
|
void | set_data (const Quark &key, void *data, DestroyNotify notify) |
|
void | remove_data (const QueryQuark &quark) |
|
void * | steal_data (const QueryQuark &quark) |
|
Glib::RefPtr< Glib::Object > | wrap (GObject *object, bool take_copy=false) |
|
| 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 |
|
void | connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot) |
|
void | connect_property_changed (const Glib::ustring &property_name, sigc::slot< void > &&slot) |
|
sigc::connection | connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot) |
|
sigc::connection | connect_property_changed_with_return (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) |
|
| ~trackable () |
|
void | add_destroy_notify_callback (void *data, func_destroy_notify func) const |
|
void | notify_callbacks () |
|
trackable & | operator= (const trackable &src) |
|
trackable & | operator= (trackable &&src) |
|
void | remove_destroy_notify_callback (void *data) const |
|
Tooltips are the messages that appear next to a widget when the mouse pointer is held over it for a short amount of time.
They are especially helpful for adding more verbose descriptions of things such as buttons in a toolbar.
This widget holds tooltips for other widgets. You should only need one Tooltip widget for all widgets you wish to add tips to.
- Deprecated:
- Use the Gtk::Tooltip API instead.