File indexing completed on 2024-05-05 05:38:34

0001 /*
0002     SPDX-FileCopyrightText: 2023 Fushan Wen <qydwhotmail@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 namespace RegionFilterMode
0010 {
0011 Q_NAMESPACE
0012 
0013 enum Mode {
0014     Disabled = 0,
0015     Inside, /**< Window is inside the region */
0016     Intersect, /**< Window intersects with the region */
0017     Outside, /**< Window is not inside the region, and does not intersect with the region */
0018 };
0019 Q_ENUM_NS(Mode)
0020 }