vote up 2 vote down star

I've got the following custom widget:

class QDESIGNER_WIDGET_EXPORT MySpecialButton : public QAbstractButton
{
    Q_OBJECT
    ...etc...
};

Qt Designer recognizes this widget, and I can place it onto my form without a problem. However, when looking in the property editor, only the QObject and QWidget properties are visible. How do I get Qt Designer to recognize that this is also a QAbstractButton object?

flag

50% accept rate

1 Answer

vote up 1 vote down

First, make sure you have the Q_OBJECT macro in your class definition. Also, make sure the file was properly moced. If neither of those help, you might investigate how QPushButton and QToolButton are declared to see if that gives you any hints.

Finally, if you need a chainsaw approach rather than a scalpel, you could define the properties you want to set in your class, giving the QAbstractButton functions as the ones to call for the properties. Look into the Q_PROPERTY macro.

link|flag
Thanks, but I've got the Q_OBJECT macro in there (edited my question for clarity). I was getting compiler errors until I fixed that. I've looked at QPushButton, and I didn't see anything special about it. I'm going to leave this question up for awhile, and if I never get a solution, I guess I'll go the chainsaw route. – mos Sep 4 at 14:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.