File indexing completed on 2024-05-12 03:55:46

0001 /*
0002     SPDX-FileCopyrightText: 2000 Geert Jansen <jansen@kde.org>
0003     SPDX-FileCopyrightText: 2000 Antonio Larrosa <larrosa@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only
0006 */
0007 
0008 #ifndef KPIXMAPSEQUENCELOADER_H
0009 #define KPIXMAPSEQUENCELOADER_H
0010 
0011 #include <KPixmapSequence>
0012 
0013 #include "kiconwidgets_export.h"
0014 
0015 namespace KPixmapSequenceLoader
0016 {
0017 
0018 /**
0019  * Loads a pixmapSequence given the xdg icon name
0020  *
0021  * @param iconName The name of the icon, without extension.
0022  * @param size the size to be used
0023  * @since 6.0
0024  */
0025 KICONWIDGETS_EXPORT KPixmapSequence load(const QString &iconName, int size);
0026 
0027 };
0028 
0029 #endif