blob: 833297000b9039cbc4068c85a3846b23b2f5893a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef UICUSTOMICON_H
#define UICUSTOMICON_H
#include "guiSQLiteStudio_global.h"
#include "uiloaderpropertyhandler.h"
class GUI_API_EXPORT UiCustomIcon : public UiLoaderPropertyHandler
{
public:
UiCustomIcon();
const char* getPropertyName() const;
void handle(QWidget* widget, const QVariant& value);
};
#endif // UICUSTOMICON_H
|