File indexing completed on 2024-04-28 11:43:37

0001 /*
0002     SPDX-FileCopyrightText: 2015 Gregor Mi <codestruct@posteo.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef KMORETOOLSPRESETS_P_H
0008 #define KMORETOOLSPRESETS_P_H
0009 
0010 class KMoreToolsPresetsPrivate
0011 {
0012 public:
0013     /**
0014      * Same as KMoreToolsPresets::registerServicesByGroupingNames
0015      * but sets @p firstMoreSectionDesktopEntryName to the desktop entry name
0016      * of the first service that should be in the more section by default.
0017      * If there is no such service @p firstMoreSectionDesktopEntryName
0018      * will not be changed.
0019      */
0020     static QList<KMoreToolsService *>
0021     registerServicesByGroupingNames(QString *firstMoreSectionDesktopEntryName, KMoreTools *kmt, const QStringList &groupingNames);
0022 };
0023 
0024 #endif