Warning, file /plasma/plasma-workspace/wallpapers/image/plugin/sortingmode.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2022 Fushan Wen <qydwhotmail@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 namespace SortingMode
0010 {
0011 Q_NAMESPACE
0012 
0013 enum Mode {
0014     Random,
0015     Alphabetical,
0016     AlphabeticalReversed,
0017     Modified,
0018     ModifiedReversed,
0019 };
0020 Q_ENUM_NS(Mode)
0021 }