KWindowEffects
Enumerations | |
enum | Effect { Slide = 1 , BlurBehind = 7 , BackgroundContrast = 9 } |
enum | SlideFromLocation { NoEdge = 0 , TopEdge , RightEdge , BottomEdge , LeftEdge } |
Functions | |
void | enableBackgroundContrast (QWindow *window, bool enable=true, qreal contrast=1, qreal intensity=1, qreal saturation=1, const QRegion ®ion=QRegion()) |
void | enableBlurBehind (QWindow *window, bool enable=true, const QRegion ®ion=QRegion()) |
bool | isEffectAvailable (Effect effect) |
void | slideWindow (QWindow *window, SlideFromLocation location, int offset=-1) |
Detailed Description
Namespace for common standardized window effects.
Enumeration Type Documentation
◆ Effect
enum KWindowEffects::Effect |
Definition at line 23 of file kwindoweffects.h.
◆ SlideFromLocation
enum KWindowEffects::SlideFromLocation |
Definition at line 29 of file kwindoweffects.h.
Function Documentation
◆ enableBackgroundContrast()
KWINDOWSYSTEM_EXPORT void KWindowEffects::enableBackgroundContrast | ( | QWindow * | window, |
bool | enable = true, | ||
qreal | contrast = 1, | ||
qreal | intensity = 1, | ||
qreal | saturation = 1, | ||
const QRegion & | region = QRegion() ) |
Instructs the window manager to modify the color of the background in the specified region behind the given window, in order to improve the contrast and readability of any text in the translucent window.
The given region will overwrite any previous backgroundcontrast region. Passing a null region will enable the blur effect for the whole window. The region is relative to the top-left corner of the client area.
If enable is false
, blur will be disabled for the whole window (region is ignored).
Note that you will usually want to set the region to the shape of the window, excluding any shadow or halo.
- Parameters
-
window The window for which to enable the background contrast effect enable Enable the effect if true
, disable it iffalse
brightness How to modify the area brightness: from 0 (make it black) to 2 (make it white), 1 leaves it unchanged region The region within the window where the background will be modified, specified in logical pixels
- Since
- 5.82
Definition at line 31 of file kwindoweffects.cpp.
◆ enableBlurBehind()
KWINDOWSYSTEM_EXPORT void KWindowEffects::enableBlurBehind | ( | QWindow * | window, |
bool | enable = true, | ||
const QRegion & | region = QRegion() ) |
Instructs the window manager to blur the background in the specified region behind the given window.
The given region will overwrite any previous blur-behind region. Passing a null region will enable the blur effect for the whole window. The region is relative to the top-left corner of the client area.
If enable is false
, blur will be disabled for the whole window (region is ignored).
Note that you will usually want to set the region to the shape of the window, excluding any shadow or halo.
- Parameters
-
window The window for which to enable the blur effect enable Enable the effect if true
, disable it iffalse
region The region within the window where the background will be blurred, specified in logical pixels
- Since
- 5.82
Definition at line 26 of file kwindoweffects.cpp.
◆ isEffectAvailable()
KWINDOWSYSTEM_EXPORT bool KWindowEffects::isEffectAvailable | ( | Effect | effect | ) |
- Returns
- if an atom property is available
- Parameters
-
effect the effect we want to check
Definition at line 21 of file kwindoweffects.cpp.
◆ slideWindow()
KWINDOWSYSTEM_EXPORT void KWindowEffects::slideWindow | ( | QWindow * | window, |
SlideFromLocation | location, | ||
int | offset = -1 ) |
Mark a window as sliding from screen edge.
- Parameters
-
id of the window on which we want to apply the effect location edge of the screen from which we want the sliding effect. Desktop and Floating won't have effect. offset distance in pixels from the screen edge defined by location
- Since
- 5.82
Definition at line 36 of file kwindoweffects.cpp.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:10:18 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.