qtforkawesome/qtforkawesome/icon.h

21 lines
512 B
C
Raw Permalink Normal View History

2021-09-11 14:42:11 +02:00
#ifndef QT_FORK_AWESOME_ICON
#define QT_FORK_AWESOME_ICON
#include "./iconfwd.h"
namespace QtForkAwesome {
2021-09-13 18:24:22 +02:00
/*!
* \brief The Icon enum specifies a ForkAwesome icon for calling QtForkAwesome::Renderer::render().
*/
2021-09-11 14:42:11 +02:00
enum class Icon : IconBaseType {
Invalid, /**< invalid, used by QtForkAwesome::iconFromId() to indicate failure */
#ifndef Q_MOC_RUN // workaround moc parse errors on Fedora 33 and 34 builds
2021-09-11 14:42:11 +02:00
#include "private/icons.h"
#endif
2021-09-11 14:42:11 +02:00
};
} // namespace QtForkAwesome
#endif // QT_FORK_AWESOME_ICON