Maintainer | gtk2hs-users@lists.sourceforge.net |
---|---|
Stability | provisional |
Portability | portable (depends on GHC) |
Safe Haskell | None |
Language | Haskell98 |
Object representing a physical screen
- Module available since Gdk version 2.2
- data Screen
- class GObjectClass o => ScreenClass o
- castToScreen :: GObjectClass obj => obj -> Screen
- gTypeScreen :: GType
- toScreen :: ScreenClass o => o -> Screen
- screenGetDefault :: IO (Maybe Screen)
- screenGetSystemVisual :: Screen -> IO Visual
- screenIsComposited :: Screen -> IO Bool
- screenGetRootWindow :: Screen -> IO DrawWindow
- screenGetDisplay :: Screen -> IO Display
- screenGetNumber :: Screen -> IO Int
- screenGetWidth :: Screen -> IO Int
- screenGetHeight :: Screen -> IO Int
- screenGetWidthMm :: Screen -> IO Int
- screenGetHeightMm :: Screen -> IO Int
- screenGetWidthMM :: Screen -> IO Int
- screenGetHeightMM :: Screen -> IO Int
- screenListVisuals :: Screen -> IO [Visual]
- screenGetToplevelWindows :: Screen -> IO [DrawWindow]
- screenMakeDisplayName :: GlibString string => Screen -> IO string
- screenGetNMonitors :: Screen -> IO Int
- screenGetMonitorGeometry :: Screen -> Int -> IO Rectangle
- screenGetMonitorAtPoint :: Screen -> Int -> Int -> IO Int
- screenGetMonitorAtWindow :: Screen -> DrawWindow -> IO Int
- screenGetMonitorHeightMm :: Screen -> Int -> IO Int
- screenGetMonitorWidthMm :: Screen -> Int -> IO Int
- screenGetMonitorPlugName :: GlibString string => Screen -> Int -> IO (Maybe string)
- screenGetActiveWindow :: Screen -> IO (Maybe DrawWindow)
- screenGetWindowStack :: Screen -> IO (Maybe [DrawWindow])
- screenFontOptions :: Attr Screen (Maybe FontOptions)
- screenResolution :: Attr Screen Double
- screenSizeChanged :: ScreenClass self => Signal self (IO ())
- screenCompositedChanged :: ScreenClass self => Signal self (IO ())
- screenMonitorsChanged :: ScreenClass self => Signal self (IO ())
Detail
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 default colormap
(screenGetDefaultColormap
), the screen width (screenGetWidth
), etc.
Note that a screen may consist of multiple monitors which are merged to form a large screen area.
Class Hierarchy
| GObject
| +----Screen
Types
class GObjectClass o => ScreenClass o Source #
castToScreen :: GObjectClass obj => obj -> Screen Source #
gTypeScreen :: GType Source #
toScreen :: ScreenClass o => o -> Screen Source #
Methods
Gets the default screen for the default display. (See
displayGetDefault
).
screenGetSystemVisual Source #
Get the system's default visual for screen
. This is the visual for the
root window of the display.
:: Screen | |
-> IO Bool | returns Whether windows with RGBA visuals can reasonably be expected to have their alpha channels drawn correctly on the screen. |
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
.
- Available since Gdk version 2.10
:: Screen | |
-> IO DrawWindow | returns the root window |
Gets the root window of screen
.
Gets the display to which the screen
belongs.
Gets the index of screen
among the screens in the display to which it
belongs. (See screenGetDisplay
)
Gets the width of screen
in pixels
Gets the height of screen
in pixels
Gets the width of screen
in millimeters. Note that on some X servers
this value will not be correct.
Returns the height of screen
in millimeters. Note that on some X
servers this value will not be correct.
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.
screenGetToplevelWindows Source #
:: Screen | |
-> IO [DrawWindow] | returns list of 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
getDefaultRootWindow
).
screenMakeDisplayName Source #
:: GlibString string | |
=> Screen | |
-> IO string | returns a newly allocated string |
Determines the name to pass to displayOpen
to get a Display
with this
screen as the default screen.
Returns the number of monitors which screen
consists of.
screenGetMonitorGeometry Source #
Retrieves the Rectangle
representing the size and
position of the individual monitor within the entire screen area.
Note that the size of the entire screen area can be retrieved via
screenGetWidth
and screenGetHeight
.
screenGetMonitorAtPoint Source #
:: Screen | |
-> Int |
|
-> Int |
|
-> IO Int | returns the monitor number in which the point ( |
Returns the monitor number in which the point (x
,y
) is located.
screenGetMonitorAtWindow Source #
:: Screen | |
-> DrawWindow |
|
-> IO Int | returns the monitor number in which most of |
Returns the number of the monitor in which the largest area of the
bounding rectangle of window
resides.
screenGetMonitorHeightMm Source #
:: Screen | |
-> Int |
|
-> IO Int | returns the height of the monitor, or -1 if not available |
Gets the height in millimeters of the specified monitor.
- Available since Gdk version 2.14
screenGetMonitorWidthMm Source #
:: Screen | |
-> Int |
|
-> IO Int | returns the width of the monitor, or -1 if not available |
Gets the width in millimeters of the specified monitor, if available.
- Available since Gdk version 2.14
screenGetMonitorPlugName Source #
:: GlibString string | |
=> Screen | |
-> Int |
|
-> IO (Maybe string) | returns a newly-allocated string containing the name of the
monitor, or |
Returns the output name of the specified monitor. Usually something like VGA, DVI, or TV, not the actual product name of the display device.
- Available since Gdk version 2.14
screenGetActiveWindow Source #
:: Screen | |
-> IO (Maybe DrawWindow) | returns the currently active window, or
|
Returns the currently active window of this screen.
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 Nothing
.
On other platforms, this function may return Nothing
, depending on whether
it is implementable on that platform.
- Available since Gdk version 2.10
:: Screen | |
-> IO (Maybe [DrawWindow]) | returns a list of |
Returns a list of DrawWindow
s 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 Nothing
.
On other platforms, this function may return Nothing
, depending on whether it is
implementable on that platform.
- Available since Gdk version 2.10
Attributes
screenFontOptions :: Attr Screen (Maybe FontOptions) Source #
The default font options for the screen.
screenResolution :: Attr Screen Double Source #
The resolution for fonts on the screen.
Default value: -1
Signals
screenSizeChanged :: ScreenClass self => Signal self (IO ()) Source #
The ::size_changed signal is emitted when the pixel width or height of a screen changes.
screenCompositedChanged :: ScreenClass self => Signal self (IO ()) Source #
The screenCompositedChanged
signal is emitted when the composited status of
the screen changes
- Available since Gdk version 2.10
screenMonitorsChanged :: ScreenClass self => Signal self (IO ()) Source #
The screenMonitorsChanged
signal is emitted when the number, size or
position of the monitors attached to the screen change.
Only for X for now. Future implementations for Win32 and OS X may be a possibility.
- Available since Gdk version 2.14