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