39 lines
724 B
C++
39 lines
724 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,
|
|
|
|
SymbolTypeCount
|
|
};
|
|
|
|
Q_ENUM_NS( Type )
|
|
|
|
QSK_EXPORT QskGraphic graphic( Type );
|
|
}
|
|
|
|
#endif
|