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