Hi, I'm a relative newbie, have figured out quite a bit but am stuck on something that feels like it should be easy.
I want to add a LineEdit Widget to the main toolbar
It seems I can't do this in the designer :-(
So I am trying to do it programmatically
QLineEdit *txtIpAddress = new QLineEdit(ui.mainToolBar);
QAction *action = ui.mainToolBar->addWidget(txtIpAddress);
action->setVisible(true);
nothing shows up on the toolbar though
thanks, Scott
Bookmarks