我的QMainWindow包含三个不同的窗口。 我想显示三个不同的工具栏。每个窗口一个。 现在,我显示一个工具栏,但不能将其恰好放在窗口上方。 我想知道是否有可能?
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent) {
//here I declared a widget and my three windows.
QToolBar *toolBar= addToolBar("window");
addLine=new QAction("Add Line",this);
removeLine=new QAction("Remove line",this);
removeAll=new QAction("Remove all",this);
toolBar->addAction(addLine);
toolBar->addAction(removeLine);
toolBar->addAction(removeAll);
}