digiKam
Loading...
Searching...
No Matches
geogroupstate.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 2009-12-01
7 * Description : class GroupState
8 *
9 * SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 * SPDX-FileCopyrightText: 2009-2010 by Michael G. Hansen <mike at mghansen dot de>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Qt includes
19
20#include <QFlags>
21
22namespace Digikam
23{
24
43{
44 SelectedMask = 0x03 << 0,
45 SelectedNone = 0x00 << 0,
46 SelectedSome = 0x03 << 0,
47 SelectedAll = 0x02 << 0,
48
53
54 RegionSelectedMask = 0x03 << 4,
55 RegionSelectedNone = 0x00 << 4,
56 RegionSelectedSome = 0x03 << 4,
57 RegionSelectedAll = 0x02 << 4
58};
59
60Q_DECLARE_FLAGS(GeoGroupState, GeoGroupStateEnum)
61
62} // namespace Digikam
63
64Q_DECLARE_OPERATORS_FOR_FLAGS(Digikam::GeoGroupState)
Definition datefolderview.cpp:34
GeoGroupStateEnum
Representation of possible tile or cluster states.
Definition geogroupstate.h:43
@ SelectedNone
Definition geogroupstate.h:45
@ FilteredPositiveMask
Definition geogroupstate.h:49
@ FilteredPositiveAll
Definition geogroupstate.h:52
@ SelectedMask
Definition geogroupstate.h:44
@ RegionSelectedSome
Definition geogroupstate.h:56
@ SelectedAll
Definition geogroupstate.h:47
@ SelectedSome
Definition geogroupstate.h:46
@ RegionSelectedAll
Definition geogroupstate.h:57
@ RegionSelectedNone
Definition geogroupstate.h:55
@ RegionSelectedMask
Definition geogroupstate.h:54
@ FilteredPositiveSome
Definition geogroupstate.h:51
@ FilteredPositiveNone
Definition geogroupstate.h:50