Sorry Javier for short comments. Every time I intended to break a line, the comment was submitted :-(
I tried this code in a project created with QtCreator:
class MyWidgetAction : public QWidgetAction
{
public:
MyWidgetAction( QObject * parent ) :QWidgetAction ( parent )
{
}
void releaseWidget ( QWidget * widget )
{
widget->deleteLater();
}
QWidget * requestWidget ( QWidget * parent )
{
QPushButton *b = new QPushButton( tr("MyWidget"), parent );
b->show();
return b;
}
};
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QAction *a = new QAction(tr("TestAction"),this); //1
QWidgetAction * wa = new QWidgetAction(this); //2
wa->setDefaultWidget(new QPushButton("Default"));
MyWidgetAction *mwa = new MyWidgetAction(this); //3
ui->menuBar->addAction( a ); //1 - works. TestAction added to menu bar
ui->menuBar->addAction( wa ); //2 - noop. nothing added to menu bar
ui->menuBar->addAction( mwa ); //3 - noop. nothing added to menu bar
}
Only adding QAction (1) worked. Neither adding QWidgetAction with default widget not subclassing QWidgetAction gave a result. I've set breakpoints in C-Tor and both virtual functions of MyWidgetAction. Surprisingly, only C-Tor break-point was hit.
I've tried on Windows with Open-Source, MinGW version of Qt4.6.3
Could it be a bug in Qt?
Thank you very much in advance for any suggestions!
Regards,
Valentin Heinitz