qskinny/src/graphic/QskStandardSymbol.h

42 lines
773 B
C
Raw Normal View History

2017-07-21 16:21:34 +00:00
/******************************************************************************
* 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
2022-03-08 10:18:10 +00:00
#define QSK_STANDARD_SYMBOL_H
2017-07-21 16:21:34 +00:00
#include "QskGlobal.h"
2018-07-19 12:10:48 +00:00
#include <qmetatype.h>
2017-07-21 16:21:34 +00:00
class QskGraphic;
2022-03-24 07:50:53 +00:00
namespace QskStandardSymbol
2017-07-21 16:21:34 +00:00
{
2023-01-09 14:19:39 +00:00
Q_NAMESPACE_EXPORT( QSK_EXPORT )
2017-07-21 16:21:34 +00:00
enum Type
{
NoSymbol = -1,
Ok,
Cancel,
Information,
Warning,
Critical,
Question,
CheckMark,
CrossMark,
2017-07-21 16:21:34 +00:00
SymbolTypeCount
};
2022-03-24 07:50:53 +00:00
Q_ENUM_NS( Type )
2017-07-21 16:21:34 +00:00
2022-03-24 07:50:53 +00:00
QSK_EXPORT QskGraphic graphic( Type );
}
2017-07-21 16:21:34 +00:00
#endif