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
9#include <qnamespace.h>
10#include <qqmlregistration.h>
11
12namespace RegionFilterMode
13{
14Q_NAMESPACE
15QML_ELEMENT
16
17enum Mode {
18 Disabled = 0,
19 Inside, /**< Window is inside the region */
20 Intersect, /**< Window intersects with the region */
21 Outside, /**< Window is not inside the region, and does not intersect with the region */
22};
23Q_ENUM_NS(Mode)
24}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:14:59 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.