qskinny/src/graphic/QskStandardSymbol.h
2022-07-01 12:39:28 +02:00

42 lines
763 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_STANDARD_SYMBOL_H
#define QSK_STANDARD_SYMBOL_H
#include "QskGlobal.h"
#include <qmetatype.h>
class QskGraphic;
namespace QskStandardSymbol
{
QSK_EXPORT Q_NAMESPACE
enum Type
{
NoSymbol = -1,
Ok,
Cancel,
Information,
Warning,
Critical,
Question,
CheckMark,
CrossMark,
SymbolTypeCount
};
Q_ENUM_NS( Type )
QSK_EXPORT QskGraphic graphic( Type );
}
#endif