Hi all, I'm a problem: I would use QDockWidget containing a list of widgets like QTextEdit and QList but I do not know how to do.
I wrote this code inside the MainWindow:
Qt Code:
  1. QDockWidget *dock = new QDockWidget(tr("Contenitore"), this);
  2. dock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
  3. this->addDockWidget(Qt::LeftDockWidgetArea, dock);
  4. QListWidget *listaWid = new QListWidget(dock);
To copy to clipboard, switch view to plain text mode 
As I continue to put in a list widget QLabels and a QTextEdit?

Thanks for the help