Plasma-workspace

regionfiltermode.h
1/*
2 SPDX-FileCopyrightText: 2023 Fushan Wen <qydwhotmail@gmail.com>
3
4 SPDX-License-Identifier: LGPL-2.1-or-later
5*/
6
7#pragma once
8
9namespace RegionFilterMode
10{
11Q_NAMESPACE
12
13enum Mode {
14 Disabled = 0,
15 Inside, /**< Window is inside the region */
16 Intersect, /**< Window intersects with the region */
17 Outside, /**< Window is not inside the region, and does not intersect with the region */
18};
19Q_ENUM_NS(Mode)
20}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Sat Apr 27 2024 22:12:03 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.