mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
28 lines
342 B
Plaintext
28 lines
342 B
Plaintext
%Import QtWidgets/QtWidgetsmod.sip
|
|
|
|
%If (Qt_5_0_0 -)
|
|
|
|
namespace ads
|
|
{
|
|
|
|
class CIconProvider
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
#include <IconProvider.h>
|
|
%End
|
|
|
|
|
|
public:
|
|
CIconProvider();
|
|
|
|
virtual ~CIconProvider();
|
|
|
|
QIcon customIcon(eIcon IconId);
|
|
|
|
void registerCustomIcon(eIcon IconId, const QIcon& icon /TransferThis/ );
|
|
};
|
|
|
|
};
|
|
|
|
%End |