gtkmm 3.24.7
|
Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical screen. More...
#include <gdkmm/screen.h>
Inherits Glib::Object.
Public Member Functions | |
Screen (Screen && src) noexcept | |
Screen & | operator= (Screen && src) noexcept |
~Screen () noexcept override | |
GdkScreen * | gobj () |
Provides access to the underlying C GObject. More... | |
const GdkScreen * | gobj () const |
Provides access to the underlying C GObject. More... | |
GdkScreen * | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More... | |
Glib::RefPtr< Visual > | get_system_visual () |
Get the system’s default visual for screen. More... | |
Glib::RefPtr< const Visual > | get_system_visual () const |
Get the system’s default visual for screen. More... | |
Glib::RefPtr< Visual > | get_rgba_visual () |
Gets a visual to use for creating windows with an alpha channel. More... | |
Glib::RefPtr< const Visual > | get_rgba_visual () const |
Gets a visual to use for creating windows with an alpha channel. More... | |
bool | is_composited () const |
Returns whether windows with an RGBA visual can reasonably be expected to have their alpha channel drawn correctly on the screen. More... | |
Glib::RefPtr< Window > | get_root_window () |
Gets the root window of screen. More... | |
Glib::RefPtr< const Window > | get_root_window () const |
Gets the root window of screen. More... | |
Glib::RefPtr< Display > | get_display () |
Gets the display to which the screen belongs. More... | |
Glib::RefPtr< const Display > | get_display () const |
Gets the display to which the screen belongs. More... | |
int | get_number () const |
Gets the index of screen among the screens in the display to which it belongs. More... | |
int | get_width () const |
Gets the width of screen in pixels. More... | |
int | get_height () const |
Gets the height of screen in pixels. More... | |
int | get_width_mm () const |
Gets the width of screen in millimeters. More... | |
int | get_height_mm () const |
Returns the height of screen in millimeters. More... | |
std::vector< Glib::RefPtr< Visual > > | list_visuals () |
Lists the available visuals for the specified screen. More... | |
std::vector< Glib::RefPtr< Window > > | get_toplevel_windows () |
Obtains a list of all toplevel windows known to GDK on the screen screen. More... | |
Glib::ustring | make_display_name () |
Determines the name to pass to Gdk::Display::open() to get a Gdk::Display with this screen as the default screen. More... | |
int | get_n_monitors () const |
Returns the number of monitors which screen consists of. More... | |
int | get_primary_monitor () const |
Gets the primary monitor for screen. More... | |
void | get_monitor_geometry (int monitor_num, Rectangle & dest) const |
Retrieves the Gdk::Rectangle representing the size and position of the individual monitor within the entire screen area. More... | |
Rectangle | get_monitor_workarea (int monitor_num=0) const |
Retrieves the Gdk::Rectangle representing the size and position of the "work area" on a monitor within the entire screen area. More... | |
int | get_monitor_at_point (int x, int y) const |
Returns the monitor number in which the point ( x, y) is located. More... | |
int | get_monitor_at_window (const Glib::RefPtr< Window > & window) const |
Returns the number of the monitor in which the largest area of the bounding rectangle of window resides. More... | |
int | get_monitor_width_mm (int monitor_num) const |
Gets the width in millimeters of the specified monitor, if available. More... | |
int | get_monitor_height_mm (int monitor_num) const |
Gets the height in millimeters of the specified monitor. More... | |
Glib::ustring | get_monitor_plug_name (int monitor_num) const |
Returns the output name of the specified monitor. More... | |
int | get_monitor_scale_factor (int monitor_num) |
Returns the internal scale factor that maps from monitor coordinates to the actual device pixels. More... | |
template<class ValueType > | |
bool | get_setting (const Glib::ustring & name, ValueType & value) const |
void | set_font_options (const ::Cairo::FontOptions & options) |
Sets the default font options for the screen. More... | |
::Cairo::FontOptions | get_font_options () const |
Gets any options previously set with set_font_options(). More... | |
void | set_resolution (double dpi) |
Sets the resolution for font handling on the screen. More... | |
double | get_resolution () const |
Gets the resolution for font handling on the screen; see set_resolution() for full details. More... | |
Glib::RefPtr< Gdk::Window > | get_active_window () |
Returns the screen’s currently active window. More... | |
Glib::RefPtr< const Gdk::Window > | get_active_window () const |
Returns the screen’s currently active window. More... | |
std::vector< Glib::RefPtr< Window > > | get_window_stack () |
Returns a List of Gdk::Windows representing the current window stack. More... | |
Glib::SignalProxy< void > | signal_size_changed () |
Glib::SignalProxy< void > | signal_composited_changed () |
Glib::SignalProxy< void > | signal_monitors_changed () |
Glib::PropertyProxy< ::Cairo::FontOptions > | property_font_options () |
The default font options for the screen. More... | |
Glib::PropertyProxy_ReadOnly< ::Cairo::FontOptions > | property_font_options () const |
The default font options for the screen. More... | |
Glib::PropertyProxy< double > | property_resolution () |
The resolution for fonts on the screen. More... | |
Glib::PropertyProxy_ReadOnly< double > | property_resolution () const |
The resolution for fonts on the screen. More... | |
Static Public Member Functions | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. More... | |
static Glib::RefPtr< Screen > | get_default () |
Gets the default screen for the default display. More... | |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr< Gdk::Screen > | wrap (GdkScreen * object, bool take_copy=false) |
A Glib::wrap() method for this object. More... | |
Object representing a physical screen Gdk::Screen objects are the GDK representation of a physical screen.
It is used throughout GDK and GTK+ to specify which screen the top level windows are to be displayed on. It is also used to query the screen specification and default settings such as the screen width (get_width()), etc. Note that a screen may consist of multiple monitors which are merged to form a large screen area.
|
noexcept |
|
overridenoexcept |
Glib::RefPtr< Gdk::Window > Gdk::Screen::get_active_window | ( | ) |
Returns the screen’s currently active window.
On X11, this is done by inspecting the _NET_ACTIVE_WINDOW property on the root window, as described in the Extended Window Manager Hints. If there is no currently currently active window, or the window manager does not support the _NET_ACTIVE_WINDOW hint, this function returns nullptr
.
On other platforms, this function may return nullptr
, depending on whether it is implementable on that platform.
The returned window should be unrefed using Glib::object_unref() when no longer needed.
Deprecated: 3.22
nullptr
. Glib::RefPtr< const Gdk::Window > Gdk::Screen::get_active_window | ( | ) | const |
Returns the screen’s currently active window.
On X11, this is done by inspecting the _NET_ACTIVE_WINDOW property on the root window, as described in the Extended Window Manager Hints. If there is no currently currently active window, or the window manager does not support the _NET_ACTIVE_WINDOW hint, this function returns nullptr
.
On other platforms, this function may return nullptr
, depending on whether it is implementable on that platform.
The returned window should be unrefed using Glib::object_unref() when no longer needed.
Deprecated: 3.22
nullptr
.
|
static |
Gets the default screen for the default display.
(See Gdk::Display::get_default()).
nullptr
if there is no default display. Glib::RefPtr< Display > Gdk::Screen::get_display | ( | ) |
Gets the display to which the screen belongs.
Glib::RefPtr< const Display > Gdk::Screen::get_display | ( | ) | const |
Gets the display to which the screen belongs.
::Cairo::FontOptions Gdk::Screen::get_font_options | ( | ) | const |
Gets any options previously set with set_font_options().
nullptr
if no default font options have been set. int Gdk::Screen::get_height | ( | ) | const |
Gets the height of screen in pixels.
The returned size is in ”application pixels”, not in ”device pixels” (see get_monitor_scale_factor()).
Deprecated: 3.22: Use per-monitor information instead
int Gdk::Screen::get_height_mm | ( | ) | const |
Returns the height of screen in millimeters.
Note that this value is somewhat ill-defined when the screen has multiple monitors of different resolution. It is recommended to use the monitor dimensions instead.
Deprecated: 3.22: Use per-monitor information instead
int Gdk::Screen::get_monitor_at_point | ( | int | x, |
int | y | ||
) | const |
Returns the monitor number in which the point ( x, y) is located.
Deprecated: 3.22: Use Gdk::Display::get_monitor_at_point() instead
x | The x coordinate in the virtual screen. |
y | The y coordinate in the virtual screen. |
int Gdk::Screen::get_monitor_at_window | ( | const Glib::RefPtr< Window > & | window | ) | const |
Returns the number of the monitor in which the largest area of the bounding rectangle of window resides.
Deprecated: 3.22: Use Gdk::Display::get_monitor_at_window() instead
window | A Gdk::Window. |
void Gdk::Screen::get_monitor_geometry | ( | int | monitor_num, |
Rectangle & | dest | ||
) | const |
Retrieves the Gdk::Rectangle representing the size and position of the individual monitor within the entire screen area.
The returned geometry is in ”application pixels”, not in ”device pixels” (see get_monitor_scale_factor()).
Monitor numbers start at 0. To obtain the number of monitors of screen, use get_n_monitors().
Note that the size of the entire screen area can be retrieved via get_width() and get_height().
Deprecated: 3.22: Use Gdk::Monitor::get_geometry() instead
monitor_num | The monitor number. |
dest | A Gdk::Rectangle to be filled with the monitor geometry. |
int Gdk::Screen::get_monitor_height_mm | ( | int | monitor_num | ) | const |
Gets the height in millimeters of the specified monitor.
Deprecated: 3.22: Use Gdk::Monitor::get_height_mm() instead
monitor_num | Number of the monitor, between 0 and gdk_screen_get_n_monitors (screen). |
Glib::ustring Gdk::Screen::get_monitor_plug_name | ( | int | monitor_num | ) | const |
Returns the output name of the specified monitor.
Usually something like VGA, DVI, or TV, not the actual product name of the display device.
Deprecated: 3.22: Use Gdk::Monitor::get_model() instead
monitor_num | Number of the monitor, between 0 and gdk_screen_get_n_monitors (screen). |
nullptr
if the name cannot be determined. int Gdk::Screen::get_monitor_scale_factor | ( | int | monitor_num | ) |
Returns the internal scale factor that maps from monitor coordinates to the actual device pixels.
On traditional systems this is 1, but on very high density outputs this can be a higher value (often 2).
This can be used if you want to create pixel based data for a particular monitor, but most of the time you’re drawing to a window where it is better to use Gdk::Window::get_scale_factor() instead.
Deprecated: 3.22: Use Gdk::Monitor::get_scale_factor() instead
monitor_num | Number of the monitor, between 0 and gdk_screen_get_n_monitors (screen). |
int Gdk::Screen::get_monitor_width_mm | ( | int | monitor_num | ) | const |
Gets the width in millimeters of the specified monitor, if available.
Deprecated: 3.22: Use Gdk::Monitor::get_width_mm() instead
monitor_num | Number of the monitor, between 0 and gdk_screen_get_n_monitors (screen). |
Rectangle Gdk::Screen::get_monitor_workarea | ( | int | monitor_num = 0 | ) | const |
Retrieves the Gdk::Rectangle representing the size and position of the "work area" on a monitor within the entire screen area.
The work area should be considered when positioning menus and similar popups, to avoid placing them below panels, docks or other desktop components.
Monitor numbers start at 0. To obtain the number of monitors of screen, use get_n_monitors().
monitor_num | The monitor number. |
int Gdk::Screen::get_n_monitors | ( | ) | const |
Returns the number of monitors which screen consists of.
Deprecated: 3.22: Use Gdk::Display::get_n_monitors() instead
int Gdk::Screen::get_number | ( | ) | const |
Gets the index of screen among the screens in the display to which it belongs.
(See get_display())
Deprecated: 3.22
int Gdk::Screen::get_primary_monitor | ( | ) | const |
Gets the primary monitor for screen.
The primary monitor is considered the monitor where the “main desktop” lives. While normal application windows typically allow the window manager to place the windows, specialized desktop applications such as panels should place themselves on the primary monitor.
If no primary monitor is configured by the user, the return value will be 0, defaulting to the first monitor.
Deprecated: 3.22: Use Gdk::Display::get_primary_monitor() instead
double Gdk::Screen::get_resolution | ( | ) | const |
Gets the resolution for font handling on the screen; see set_resolution() for full details.
Glib::RefPtr< Visual > Gdk::Screen::get_rgba_visual | ( | ) |
Gets a visual to use for creating windows with an alpha channel.
The windowing system on which GTK+ is running may not support this capability, in which case nullptr
will be returned. Even if a non-nullptr
value is returned, its possible that the window’s alpha channel won’t be honored when displaying the window on the screen: in particular, for X an appropriate windowing manager and compositing manager must be running to provide appropriate display.
This functionality is not implemented in the Windows backend.
For setting an overall opacity for a top-level window, see Gdk::Window::set_opacity().
nullptr
if the capability is not available. Glib::RefPtr< const Visual > Gdk::Screen::get_rgba_visual | ( | ) | const |
Gets a visual to use for creating windows with an alpha channel.
The windowing system on which GTK+ is running may not support this capability, in which case nullptr
will be returned. Even if a non-nullptr
value is returned, its possible that the window’s alpha channel won’t be honored when displaying the window on the screen: in particular, for X an appropriate windowing manager and compositing manager must be running to provide appropriate display.
This functionality is not implemented in the Windows backend.
For setting an overall opacity for a top-level window, see Gdk::Window::set_opacity().
nullptr
if the capability is not available. Glib::RefPtr< Window > Gdk::Screen::get_root_window | ( | ) |
Glib::RefPtr< const Window > Gdk::Screen::get_root_window | ( | ) | const |
bool Gdk::Screen::get_setting | ( | const Glib::ustring & | name, |
ValueType & | value | ||
) | const |
Glib::RefPtr< Visual > Gdk::Screen::get_system_visual | ( | ) |
Get the system’s default visual for screen.
This is the visual for the root window of the display. The return value should not be freed.
Glib::RefPtr< const Visual > Gdk::Screen::get_system_visual | ( | ) | const |
Get the system’s default visual for screen.
This is the visual for the root window of the display. The return value should not be freed.
std::vector< Glib::RefPtr< Window > > Gdk::Screen::get_toplevel_windows | ( | ) |
Obtains a list of all toplevel windows known to GDK on the screen screen.
A toplevel window is a child of the root window (see gdk_get_default_root_window()).
|
static |
Get the GType for this class, for use with the underlying GObject type system.
int Gdk::Screen::get_width | ( | ) | const |
Gets the width of screen in pixels.
The returned size is in ”application pixels”, not in ”device pixels” (see get_monitor_scale_factor()).
Deprecated: 3.22: Use per-monitor information instead
int Gdk::Screen::get_width_mm | ( | ) | const |
Gets the width of screen in millimeters.
Note that this value is somewhat ill-defined when the screen has multiple monitors of different resolution. It is recommended to use the monitor dimensions instead.
Deprecated: 3.22: Use per-monitor information instead
std::vector< Glib::RefPtr< Window > > Gdk::Screen::get_window_stack | ( | ) |
Returns a List of Gdk::Windows representing the current window stack.
On X11, this is done by inspecting the _NET_CLIENT_LIST_STACKING property on the root window, as described in the Extended Window Manager Hints. If the window manager does not support the _NET_CLIENT_LIST_STACKING hint, this function returns nullptr
.
On other platforms, this function may return nullptr
, depending on whether it is implementable on that platform.
nullptr
.
|
inline |
Provides access to the underlying C GObject.
|
inline |
Provides access to the underlying C GObject.
GdkScreen * Gdk::Screen::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
bool Gdk::Screen::is_composited | ( | ) | const |
Returns whether windows with an RGBA visual can reasonably be expected to have their alpha channel drawn correctly on the screen.
On X11 this function returns whether a compositing manager is compositing screen.
std::vector< Glib::RefPtr< Visual > > Gdk::Screen::list_visuals | ( | ) |
Lists the available visuals for the specified screen.
A visual describes a hardware image data format. For example, a visual might support 24-bit color, or 8-bit color, and might expect pixels to be in a certain format.
Glib::ustring Gdk::Screen::make_display_name | ( | ) |
Determines the name to pass to Gdk::Display::open() to get a Gdk::Display with this screen as the default screen.
Deprecated: 3.22
Glib::PropertyProxy< ::Cairo::FontOptions > Gdk::Screen::property_font_options | ( | ) |
The default font options for the screen.
Glib::PropertyProxy_ReadOnly< ::Cairo::FontOptions > Gdk::Screen::property_font_options | ( | ) | const |
The default font options for the screen.
Glib::PropertyProxy< double > Gdk::Screen::property_resolution | ( | ) |
The resolution for fonts on the screen.
Default value: -1
Glib::PropertyProxy_ReadOnly< double > Gdk::Screen::property_resolution | ( | ) | const |
The resolution for fonts on the screen.
Default value: -1
void Gdk::Screen::set_font_options | ( | const ::Cairo::FontOptions & | options | ) |
Sets the default font options for the screen.
These options will be set on any Pango::Context’s newly created with gdk_pango_context_get_for_screen(). Changing the default set of font options does not affect contexts that have already been created.
options | A #cairo_font_options_t, or nullptr to unset any previously set default font options. |
void Gdk::Screen::set_resolution | ( | double | dpi | ) |
Sets the resolution for font handling on the screen.
This is a scale factor between points specified in a Pango::FontDescription and cairo units. The default value is 96, meaning that a 10 point font will be 13 units high. (10 * 96. / 72. = 13.3).
dpi | The resolution in “dots per inch”. (Physical inches aren’t actually involved; the terminology is conventional.). |
Glib::SignalProxy< void > Gdk::Screen::signal_composited_changed | ( | ) |
void on_my_composited_changed()
Flags: Run Last
The signal_composited_changed() signal is emitted when the composited status of the screen changes
Glib::SignalProxy< void > Gdk::Screen::signal_monitors_changed | ( | ) |
void on_my_monitors_changed()
Flags: Run Last
The signal_monitors_changed() signal is emitted when the number, size or position of the monitors attached to the screen change.
Only for X11 and OS X for now. A future implementation for Win32 may be a possibility.
Glib::SignalProxy< void > Gdk::Screen::signal_size_changed | ( | ) |
void on_my_size_changed()
Flags: Run Last
The signal_size_changed() signal is emitted when the pixel width or height of a screen changes.
|
related |
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. |