Hi,
this is my first post on this forum. I'm a complete newbie to Qt so please forgive alle silly questions 
How can I add a toolbar to a QTableWidget?
On my QMainWindow I used something like
addToolBar( Qt::TopToolBarArea, toolbar );
toolbar = new QToolBar( this );
addToolBar( Qt::TopToolBarArea, toolbar );
To copy to clipboard, switch view to plain text mode
but now I want to create a TableWidget as a main window and need a toolbar. QTableWidget has no addToolBar() so do I have to make a QMainWindow containing a QTableWidget and a QToolBar or is there another way?
Thanks in advance...
Bookmarks