-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathQIntSliderEditInterface.h
More file actions
41 lines (35 loc) · 1001 Bytes
/
QIntSliderEditInterface.h
File metadata and controls
41 lines (35 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef QSLIDEREDITINTERFACE_H
#define QSLIDEREDITINTERFACE_H
#include <QWidget>
#include "CustomWidget.h"
#ifndef _LIB
#if defined(SIMUL_QT_WIDGETS)
#define SIMUL_QT_WIDGETS_EXPORT Q_DECL_EXPORT
#else
#define SIMUL_QT_WIDGETS_EXPORT Q_DECL_IMPORT
#endif
#else
#define SIMUL_QT_WIDGETS_EXPORT
#endif
class SIMUL_QT_WIDGETS_EXPORT QIntSliderEditInterface : public QObject, public QDesignerCustomWidgetInterface
{
Q_OBJECT
Q_INTERFACES(QDesignerCustomWidgetInterface)
public:
QIntSliderEditInterface(QObject *parent);
~QIntSliderEditInterface();
bool isContainer() const;
bool isInitialized() const;
QIcon icon() const;
QString domXml() const;
QString group() const;
QString includeFile() const;
QString name() const;
QString toolTip() const;
QString whatsThis() const;
QWidget *createWidget(QWidget *parent);
void initialize(QDesignerFormEditorInterface *core);
private:
bool initialized;
};
#endif // QSliderEditInterface_H