I have the following custom widget:
class QDESIGNER_WIDGET_EXPORT MySpecialButton : public QAbstractButton { Q_OBJECT ...etc... };
The Qt designer recognizes this widget, and I can place it in my form without any problems. However, when viewed in the property editor, only the QObject and QWidget properties are visible. How to make Qt Designer recognize that it is also a QAbstractButton object?
source share