gtkmm 4.16.0
|
Interface for root widgets. More...
#include <gtkmm/root.h>
Public Member Functions | |
Root (Root &&src) noexcept | |
Root & | operator= (Root &&src) noexcept |
~Root () noexcept override | |
GtkRoot * | gobj () |
Provides access to the underlying C GObject. | |
const GtkRoot * | gobj () const |
Provides access to the underlying C GObject. | |
Glib::RefPtr< Gdk::Display > | get_display () |
Returns the display that this Gtk::Root is on. | |
Glib::RefPtr< const Gdk::Display > | get_display () const |
Returns the display that this Gtk::Root is on. | |
void | set_focus (Widget & focus) |
If focus is not the current focus widget, and is focusable, sets it as the focus widget for the root. | |
void | unset_focus () |
Unsets the focus widget for the root. | |
Widget * | get_focus () |
Retrieves the current focused widget within the root. | |
const Widget * | get_focus () const |
Retrieves the current focused widget within the root. | |
Static Public Member Functions | |
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. | |
Protected Member Functions | |
Root () | |
You should derive from this class to use it. | |
Related Symbols | |
(Note that these are not member symbols.) | |
Glib::RefPtr< Gtk::Root > | wrap (GtkRoot *object, bool take_copy=false) |
A Glib::wrap() method for this object. | |
Interface for root widgets.
Gtk::Root is the interface implemented by all widgets that can act as a toplevel widget to a hierarchy of widgets. The root widget takes care of providing the connection to the windowing system and manages layout, drawing and event delivery for its widget hierarchy.
The obvious example of a Gtk::Root is Gtk::Window.
|
protected |
You should derive from this class to use it.
|
noexcept |
|
overridenoexcept |
Glib::RefPtr< Gdk::Display > Gtk::Root::get_display | ( | ) |
Returns the display that this Gtk::Root
is on.
Glib::RefPtr< const Gdk::Display > Gtk::Root::get_display | ( | ) | const |
Returns the display that this Gtk::Root
is on.
Widget * Gtk::Root::get_focus | ( | ) |
Retrieves the current focused widget within the root.
Note that this is the widget that would have the focus if the root is active; if the root is not focused then gtk_widget_has_focus (widget)
will be false
for the widget.
Retrieves the current focused widget within the root.
Note that this is the widget that would have the focus if the root is active; if the root is not focused then gtk_widget_has_focus (widget)
will be false
for the widget.
|
static |
Get the GType for this class, for use with the underlying GObject type system.
|
inline |
Provides access to the underlying C GObject.
If focus is not the current focus widget, and is focusable, sets it as the focus widget for the root.
To set the focus to a particular widget in the root, it is usually more convenient to use Gtk::Widget::grab_focus() instead of this function.
focus | Widget to be the new focus widget. |
void Gtk::Root::unset_focus | ( | ) |
Unsets the focus widget for the root.
A Glib::wrap() method for this object.
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. |